This question is locked. New answers and comments are not allowed.
I see there is a selection property on the grid that returns an object representing the current selection. How can I get the selected row data item from this?
This seems to work. Is it the intended way?
Thanks
Chris
This seems to work. Is it the intended way?
var uid = grid.selection[0].getAttribute("data-uid");var dataItem = grid.dataSource.getByUid(uid);Thanks
Chris