This question is locked. New answers and comments are not allowed.
Hi,
I have this following code for my MVC grid.
I would like to get wich checkbox are selected in my controller when I click on: <input type="submit" value="Search" />
I have this following code for my MVC grid.
Html.Telerik().Grid(Model.getListOperation()) .Name("OperationGrid") .Columns(columns => { columns.Template( @<text> <input name="checkedOperations" type="checkbox" value="@item.OpCode" title="checkedOperations" </text>).Width("50px"); columns.Bound(m => m.OpDesc).Title("Operations"); }).Sortable(sorting => sorting.OrderBy(sortOrder => sortOrder.Add((m => m.OpDesc)).Ascending())) .Scrollable(c => c.Height("500px")) .Filterable() .Footer(false) .Render(); }I would like to get wich checkbox are selected in my controller when I click on: <input type="submit" value="Search" />