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

  • Home
  • SEARCH
  • 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 8320341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T22:37:28+00:00 2026-06-08T22:37:28+00:00

I am trying to use multiselect functionality in jqgrid to select multiple rows and

  • 0

I am trying to use multiselect functionality in jqgrid to select multiple rows and pass it to the controller. I have created a button as follows but when I select the rows and click the button, the click button event was not fired. I am guessing I am passing wrong parameter to the function. Below is javascript code…

$("#request").jqGrid('navButtonAdd', '#requestpager',
    {     caption: "Add", buttonicon: "ui-icon-info", title: "Add", //position: "first",
           onClickButton: function (ids) {
           var grid = $("#request");
             var rowids = grid.jqGrid('getGridParam', 'selarrrow');
             var count = rowids.length;
            var rowData, colData;
              for (var i = 0; i < count; i++) {
               rowData = $("#request").getRowData(rowids[i]);
               colData = rowData.Name;
       }
              jQuery("#request").jqGrid({ url: "/Home/Create/" + colData });

Does anyone has any suggestion of what I am doing wrong?

  • 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-06-08T22:37:30+00:00Added an answer on June 8, 2026 at 10:37 pm

    well its not difficult to implement multiselect in jqgrid, I’ll give you a working example which i’d implemented in my project.

    HTML

    <table id="grid" cellpadding="0" cellspacing="0"></table>//your grid
    <div id="pagerGrid" style="text-align:center;"></div><br />//pager
    <div><span><button type="button" id="sendMe"  class="send" >Send Me To Controller</button>//button which will take the data of all multiselect rows to controller
    

    in your JqGrid just enable multiselect: true

    and write this javascript function

    $('#sendMe').click(function(){
           var selRowIds = $('#grid').jqGrid('getGridParam', 'selarrrow');
           if(selRowIds.length>0)
           {
           for( var i=0;i<selRowIds.length;i++){
            var Id=getCellValue(selRowIds[i],'Id');
    
            var Name=getCellValue(selRowIds[i],'Name');
            var Company=getCellValue(selRowIds[i],'Company');
    
            $.ajax({
            type: 'POST',
            url: '@Url.Action("AddMe")',
            contentType: 'application/json; charset=utf-8',
            data:JSON.stringify({Id: Id,Name:Name,Company:Company}),
            dataType: "json",
    
            success:function(){
            $('#grid').trigger("reloadGrid");
             }
    
             error: function () {
    
            }
    
            }); 
    
            }
             }
           });
    

    and you controller method will lok like this

    [HttpPost]
    
     public ActionResult AddMe(int? Id, string Name, string Company)
     {
    }
    

    I hope this helps, its a working example…

    P.S- please mark it as answer if it helped you.

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

Sidebar

Related Questions

i'm trying to use jQuery multiselect plugin in a form editing jqGrid (add form).
I am trying use Thread but i have some problem (I am beginner at
Im trying use a Java annotation in a Groovy class but have trouble to
I'm actualilly trying tu use this nice widget : http://quasipartikel.at/multiselect_next/ I have two of
I am trying use gem tire to search in my application. I have tables
I'm trying use self-signed certificate (c#): X509Certificate2 cert = new X509Certificate2( Server.MapPath(~/App_Data/myhost.pfx), pass); on
Hi I'm trying use a datepicker on a field I have. I'm trying to
I am trying use filehelpers class builder but I am kinda confused on what
I am trying use Date Picker and on Select i want to display the
I am trying to use Jquery Multiselect plugin from Beautiful site and MVC3 together

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.