Hi,
I want to get a datakey value of parent grid row when we expand it to display its child rows? Any help on this will appreciate.
Thanks,
Mits
Hello Mits,
if you handle RowExpanding event on the client these two should be working:
eventArgs.get_row().get_dataKey()[0];
or
eventArgs.get_row().get_rowIslands()[0].get_parentRow().get_dataKey()[0];
Please let me know if you need further assistance
Hi Hristo,
Thanks for prompty reply. If possible can you suggest the same thing on server side? The reason is i have to do some operation on row expanding event.