Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4324890
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T09:11:37+00:00 2026-05-21T09:11:37+00:00

I have a Telerik MVC Grid where there is a column Names , Gender

  • 0

I have a Telerik MVC Grid where there is a column Names , Gender , Age . I am going to use a ListBox which is bound to Gender ( coming from SQL 2k8 Table” Person”. I am using Entity Framework, POCO classes , Repository Pattern ). Then there is a Image button as ” Search ” .

When a user selects few values from ListBox and then hits the ” Search” Button Telerik MVC Grid which is on the same page ( I am rendering a User control which has actual Telerik MVC Grid) should be populated .

how to do this ? how to pass the selected ListBox values back to controller Action ” SearchPerson” . There is a way of doing this using JQuery . But i dont know how to do this . Please help me

EDIT : Code

       <% using (Ajax.BeginForm("SearchVouDate", "ERA", new AjaxOptions { UpdateTargetId = "ProfileList", LoadingElementId = "LoadingImage", OnSuccess = "ShowMessage" }))
       { %>

    <div  class="SelectNPI" >
        <div class="DivSelectNPI">
            <input name="selection1" value="NPI" id="rdNPI" type="radio"  onclick="toggleLayer(this.checked);"  />
            <%:Html.Label(Resources.Strings.SelectNPI) %>
            <div id="ERANPI" style="display: none;"  >
               <%:Html.ListBoxFor(m => m.Eras.NPI, new MultiSelectList(Model.GetERAs, "NPI", "NPI", Model.NPIListBox), new { ID="NPIList", style = "width: 160px; height:50px" })%>
           </div>
        </div>
        <div class="SelectPIN">
            <input name="selection1" type="radio" id="rdPIN" value="PIN" onclick="toggleLayer1(this.checked);"  />
            <%:Html.Label(Resources.Strings.SelectPIN) %>
            <div id="ERAPIN" style="display: none;" >
               <%:Html.ListBoxFor(m => m.Eras.PIN, new MultiSelectList(Model.GetERAs, "PIN", "PIN", Model.PINListBox), new {ID="PINList", style = "width: 180px; height:50px" })%>
           </div>
        </div>
    </div>

            <input type="submit" class="btnSearchSubmit" id="PaySearchDateSubmit" name="PaySearchDateSubmit" value="Search" />
        </div>

    </div>
     <%} %>
     <br /><br />

     <div class="ERATopDiv" > <label id="Label1" class="lblSearchResult">  Search By Check Number</label> </div>
    <br />


    <div class="ERATopDiv"><label id="Label3" class="lblSearchResult" >Search Result</label> </div>
    <div id="ProfileList">
        <%Html.RenderPartial("SearchVoucherNum"); %>
    </div>
    <div id="results">
    </div>

</div>
<div id="EraPopupWindow">

</div>

My Controller :

           [HttpPost]
         public ActionResult SearchVouDate(ERAViewModel era, FormCollection formValues)
         {
        try
        {

           if (formValues["Eras.NPI"] != null)
            {
              era.NPIListBox = formValues["Eras.NPI"].Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
                string[] selectedNPI = era.NPIListBox;
                ERAViewModel ervm = new ERAViewModel();
                foreach (string NPI in selectedNPI)
                {                        
                    ervm = this.WorkerService.SearchByNPI(formValues);
                    return PartialView("SearchVoucherNum", ervm);
                }


            }
            else
            {
                ERAViewModel eras = this.WorkerService.SearchByPIN(era.Eras.PIN);
                return PartialView("SearchVoucherNum", eras);
            }
        }
        catch (Exception ex)
        {
            bool reThrow = ExceptionPolicyWrapper.HandleException(ex, ExceptionPolicies.MVCPolicy);
            if (reThrow)
                throw;
        }
        return null;
    }

My PartialView which I am rendering on my main View ( Main View contains my ListBox and partialView contains my telerik MVC Grid )

     <% Html.Telerik().Grid(Model.GetERAs)
       .Name("ERA").TableHtmlAttributes(new { style = "height:20px" })
       .Scrollable(scroll => scroll.Enabled(true))
       .DataKeys(datakeys => datakeys.Add(m => m.EraId))
       .Columns(columns =>
           {
               columns.Bound(m => m.NPI).Title(Resources.Strings.NPI).Width(150)
                   .HtmlAttributes(new { style = "text-align:center" })
                   .HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" });
               columns.Bound(m => m.PIN).Title(Resources.Strings.PIN).Width(150)
                   .HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
                   .HtmlAttributes(new { style = "text-align:center" });
               columns.Bound(m => m.GroupName).Title(Resources.Strings.GroupName).Width(150)
                   .HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
                   .HtmlAttributes(new { style = "text-align:center" });
               columns.Bound(m => m.CheckNo).Title(Resources.Strings.CheckNo).Width(100)
                   .HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
                   .HtmlAttributes(new { style = "text-align:center" });
               columns.Bound(m => m.VoucherNo).Title(Resources.Strings.VoucherNo).Width(150)
                   .HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
                   .HtmlAttributes(new { style = "text-align:center" });
               columns.Bound(m => m.VoucherDate).Title(Resources.Strings.VoucherDate).Format("{0:dd/MM/yyyy}").Width(150)
                   .HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
                   .HtmlAttributes(new { style = "text-align:center" });
               columns.Bound(m => m.PaymentDate).Title(Resources.Strings.PaymentDate).Format("{0:dd/MM/yyyy}").Width(150)
                   .HeaderHtmlAttributes(new { style = "color:black; margin:0 0 0 0; padding-left:15px; background-color:#BDBDBD; text-align:center; border-right:grey" })
                   .HtmlAttributes(new { style = "text-align:center" });
               columns.Bound(m => m.NonHippaVoucherPath).Title(Resources.Strings.NonHippaVoucherPath).Width(150).Format(Ajax.ActionLink("View Non Hippa voucher", "GetPdffile", "ERA", new { Id = "{0}" }, new AjaxOptions() { UpdateTargetId = "EraPopupWindow", HttpMethod = "Get" }, new { Style = "color:#FF0070;" }).ToString().Replace("{", "{{").Replace("}", "}}")).Encoded(false);
               columns.Bound(m => m.HippaVoucherPath).Title(Resources.Strings.HippaVoucherPath).Width(150).Format(Ajax.ActionLink("View Hippa voucher", "GetPdffile", "ERA", new { Id = "{0}" }, new AjaxOptions() { UpdateTargetId = "EraPopupWindow", HttpMethod = "Get" }, new { Style = "color:#FF0070;" }).ToString().Replace("{", "{{").Replace("}", "}}")).Encoded(false);  
               //columns.Bound(m => m.Non_hippa_voucher_path).HtmlAttributes("color:#8A2BE2").Format(Html.ActionLink("View Non Hippa voucher", "GetPdffile", "ERA", new { ID = "{0}" }, new { onclick = "return someFunction();", Style = "color:#8A2BE2" }).ToHtmlString()).Encoded(false).Title("").Width(150);
               //columns.Bound(m => m.Hippa_voucher_path).HtmlAttributes("color:#8A2BE2").Format(Html.ActionLink("View Hippa voucher", "GetFile/", new { ID = "{0}", Style = "color:#8A2BE2" }, "ERA/").ToHtmlString()).Encoded(false).Title("").Width(150);


           })

         //  .ClientEvents(clientEvents => clientEvents.OnDataBinding("dataBinding"))
           .DataBinding(databinding => databinding.Ajax().Select("AjaxERA", "ERA"))
           .EnableCustomBinding(true)
           .Pageable(paging =>{paging.Enabled(true) ;paging.PageSize(5) ;})
            .Sortable()
             .Filterable()
             .Footer(true)
            .Render();

%>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T09:11:38+00:00Added an answer on May 21, 2026 at 9:11 am

    The best way to do this is to use jQuery.

    You need your listBox and to bind your grid in AJAX.

    Here’s some sample code I have in an application :

    View

    <div class="content-box-filter">
            <label>Filter:</label>
            <%= Html.DropDownList("Years", Model.Years) %>
        </div>
        <div class="content-box">
            <div class="content-box-header">
                <h3>News</h3></div>
            <div class="content-box-content">
                <%= Html.Telerik().Grid<News>()
                        .Name("Grid")
                        .Columns(colums =>
                         {
                             colums.Bound(c => c.Title).Title("Titre").ClientTemplate("<a href=\"" + Url.Action(MVC.News.Modifier()) + "/<#=IdValue#>\" ><#=Title#></a>");
                             colums.Bound(c => c.Title).Title("Inscriptions").ClientTemplate("<a href=\"" + Url.Action(MVC.News.Inscriptions()) + "/<#=IdValue#>\" >fichier excel</a>");
                             colums.Bound(c => c.Published).Title("Publiée").HeaderHtmlAttributes(new { @class = "center-text" }).HtmlAttributes(new { @class = "center-text" }).ClientTemplate("<img src=\"../Content/images/icons/<#=Published#>.png\" alt=\"<#=Published#>\" />");
                             colums.Bound(c => c.CreationDate).Title("Date").HeaderHtmlAttributes(new { @class = "center-text" }).HtmlAttributes(new { @class = "center-text" }).Format("{0:MM/dd/yyyy}");
                             colums.Bound(c => c.IdValue).Title(" ").HeaderHtmlAttributes(new { @class = "center-text" }).HtmlAttributes(new { @class = "center-text" }).ClientTemplate("<a href=\"" + Url.Action(MVC.News.Modifier()) + "/<#=IdValue#>\" title=\"Modifier\" ><img src=\"../Content/images/icons/pencil.png\" alt=\"Modifier\" /></a>");
                             colums.Bound(c => c.IdValue).Title(" ").HeaderHtmlAttributes(new { @class = "center-text" }).HtmlAttributes(new { @class = "center-text" }).Format("<a id=\"deleteLink{0}\" href=\"#\" title=\"Supprimer\" onclick=\"if(confirm('Voulez-vous vraiment supprimer cette nouvelle?')){ return deleteNews('{0}');} else { return false;};\"><img src=\"../Content/images/icons/cross.png\" alt=\"Supprimer\" /></a>");
                         })
                        .DataBinding(d => d.Ajax().Select("ListAjax", "News", new { year = DateTime.Now.Year }))
                        .Sortable()
                %>
                <%= Html.AntiForgeryToken() %>
            </div>
        </div>
        <script type="text/javascript">
            var token = $('[name=__RequestVerificationToken]').val();
            $(document).ready(function() {
                $('#Years').val(<%=DateTime.Now.Year%>);
                $('#Years').change(function() {
                    var grid = $('#Grid').data('tGrid');
                    grid.rebind({ year: this.value });
                });
            });
            function deleteNews(newsId) {
                $.post('DeleteNews', { __RequestVerificationToken: token, id: newsId }, function(data) {
                    if (data == 'true') {
                        $('#deleteLink' + newsId).parent().parent().remove();
                    } 
                    return false;
                });
                return false;
            };
        </script>
    

    The NewsController action :

    [GridAction]
            public virtual ActionResult ListAjax(int year)
            {
                var gridModel = new GridModel<News>();
                gridModel.Data = _newsRepo.GetByYear(year);
                return View(gridModel);
            }
    

    Let me know if you still have question.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Telerik ASP.NET MVC Q2 2011 I have a grid which is Ajax bound: @(Html.Telerik().Grid<IUser>()
There is a lot going on here. I have a Telerik MVC grid with
Say I have a Telerik MVC Grid, AJAX bound and I want to put
I have a problem to render column template with Telerik Grid for MVC. I'm
I'm trying to use Telerik MVC Grid for an application which requires lots of
I have a Ajax Bound Teleric MVC 2 Grid . When there is no
A have a razor view with a Telerik MVC grid. The first column has
I have a Html.Telerik().Grid() that is bound to a model in my MVC view.
I have a footer with column totals on my Telerik MVC grid. I would
Telerik grid for mvc : I have a checkbox which show status of item.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.