Hello,
I'm trying to do prepare a application, that allow to edit the grid's data in external form. The only difference to the example shown in: http://docs.telerik.com/kendo-ui/controls/data-management/grid/how-to/Editing/grid-external-form-editing
is that the edit should work for current item (not selected item), as we want to allow user to select multiply item, but the edit works only in the context of current item.
Generally it works, but after changing any value, there is called the dataBound event of the grid, and I can't get to reselect the current item...
In the selection event I do:
this.currentGridItem = e.sender.current();
and in the databound event i try to:
grid.select(itemsToSelect);
e.sender.current(this.currentGridItem);
but the current item does not get selected and the edit context gets lost (selected items are restored correctly).
Can You help with this? This is quite important scenario for us..
Best regards
Marcin Danek