When a row has been selected, I am successfully getting selected row:
var currentRow = sender.get_behaviors().get_selection().get_selectedRowsResolved()[0];
Is there a javascript function to get the parent WebDataGrid for that row?
Something like this:
var grid = currentRow.get_parentGrid();
Thanks
I found the solution, its very simple:
It gives you the parent grid.
Thanks Everyone!