Hello,
I have a requirement to allow client side selection of a row using RadGrid.
I have a parent form that opens a child form using javascript window.open. I want the child form to pass back a value in a selected row in the grid.
I have set the following:
<ClientSettings EnableRowHoverStyle="true">
<Selecting AllowRowSelect="True" />
<ClientEvents OnRowClick="MyJavascriptFunction()" />
</ClientSettings>
The problem is the OnRowClick event is fired on load of the grid, but not on RowClick. I've tried OnRowDblClick, OnRowSelected all with the same result.
Please help.
Thank you,
Tim Inouye