0
votes

I have one kendo grid with check box options in popup window and one more empty kendo grid in the main view.What i need is to bind the selected checkbox rows in grid 1 to empty kendo grid in mvc

1

1 Answers

0
votes

Check the following post, which discusses a similar scenario:

https://stackoverflow.com/a/38707214/3086237

Even if you are not using the built-in selection feature, the core step is to retrieve a collection of the checked/selected rows in the first Grid via the dataItem method and push them to an array. Then, assign the array to the second Grid's dataSource instance.

An important note - the first Grid should use Ajax binding, otherwise there are no client-side data item instances.