I'm trying to do an ajax batch update without enabling InCell Editing in a Kendo Grid. I want to allow the users to select a bunch of rows, and then mark them as a certain status (selected from a drop down) and then do a batch update. Is there a way I can pass the currently selected grid items in a custom toolbar action? Something like:
@(Html.Kendo().Grid<Grid>().Name("Grid")
.DataSource(ds => ds
.Ajax()
...
)
.ToolBar(toolbar => toolbar.Custom().Action("Grid_Update", "Sessions", new {sessionId = ViewBag.SessionID, cycles = **selectedGridItems**}))
)