我正在尝试进行ajax批量更新,而不在Kendo Grid中启用InCell编辑。我想允许用户选择一堆行,然后将它们标记为某个状态(从下拉列表中选择),然后进行批量更新。有没有办法可以在自定义工具栏操作中传递当前选定的网格项?类似的东西:
@(Html.Kendo().Grid<Grid>().Name("Grid")
.DataSource(ds => ds
.Ajax()
...
)
.ToolBar(toolbar => toolbar.Custom().Action("Grid_Update", "Sessions", new {sessionId = ViewBag.SessionID, cycles = **selectedGridItems**}))
)