Click here to Skip to main content
15,881,092 members
Articles / Programming Languages / C#
Tip/Trick

Get Checked Rows In a Webgrid Using Checkbox MVC3

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
9 Feb 2012CPOL 51.3K   4   2
MVC3 webgrid does not return rows collection, here is a tip to get several objects selected
/*Assuming in a webgrid, someone wants to get a collection of objects that have been checked. MVC3 only returns a single object that has been selected and a count of all rows.
To get a few rows from the webgrid that have been checked, here is a tip on how to do it.

1. Wrap the div containing WebGrid inside a form to be submited */

   @using (Html.BeginForm("Assign","Home"))
   {
     <div id="grid">
        @grid.GetHtml(
        tableStyle: "grid",
        headerStyle: "head",
        alternatingRowStyle: "webgrid-alternating-row",
        columns: grid.Columns(grid.Column(header: "Assign?", format:@<text><input class="check-box"  id="assignChkBx"name="assignChkBx" type="checkbox" value="@item.Id"/></text>)))
     </div>

<p><input type ="submit" value ="Assign" /></p>
    }

//2. Assuming it is as above, define a controller to get the checkbox values
//Selected rows from webgrid
     [HttpPost]  
   public ActionResult Assign(FormCollection form)
   {   
    //get collection of selected ids
    var chckedValues = form.GetValues("assignChkBx");

      //You can use each object if u wish from id
     foreach (var id in chckedValues)
     {
     //get object example..  Customer Customer = Customers.find(id);
     //Your Method here like send an item to customer
     }
   return RedirectToAction("index");
   }

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Kenya Kenya
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionis Webgrid is compatible Pin
Member 943750928-Sep-12 2:16
Member 943750928-Sep-12 2:16 
AnswerRe: is Webgrid is compatible Pin
Winstan12-Nov-12 21:36
Winstan12-Nov-12 21:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.