I have developed one hierarchical grid. On Click of Each row I need to refresh another radgrid. So for that In Hierarchical grid I have one Column called ParamValue wherein I will store all my parameter to refresh that second radgrid.
Question: I have added client event in Hierarchical Grid as follows
Question: I have added client event in Hierarchical Grid as follows
<
ClientSettings>
<Selecting AllowRowSelect="True"></Selecting>
<ClientEvents OnRowClick="RowSelected"></ClientEvents>
</ClientSettings>
If i select the Master Table row I am getting the assigned value of ParamValue column. But of I click on DetailsTable[0] row I am still getting the MasterTable ParamValue.
how can I get the selected row index and Column value of Details Table in Javascript?
Regards,
Medac