Is it possible to take 2 separate Kendo UI grids and be able to pass data back and forth through UI controls (like forward and backward arrows)?
The pattern would would be to take the master list on the left, select items and have a refined list on the right.
If is possible and it is not hard to do but you have to do it by yourself so you need:
Grid
andDataSource
and the events that they expose.Lets have the following grid definitions:
We define two buttons:
grid1
togrid2
grid2
togrid1
The button definition is:
And the JavaScript for managing it:
Finally the
moveTo
would be something like:Example of this here