Is there a way to enable(force) postback on ActiveRowChanged.
My scenario is:
I have a RadGrid with KeyboardNavigation allowed, RowSelection enabled.
<ClientSettings EnablePostbackOnRowClick="true" AllowKeyboardNavigation="true" >
<Selecting AllowRowSelect="True" />
When i click on a row using the mouse, the post back happens and i perform the necessary operations that i wish to do.
Now, when i use the keyboard up/down keys to change the row selection, the grid does change the SelectedRow (the display shows the selection happening). But the control does not post back in this case.
My aim is to enable postback while navigation using arrow keys (so that i can perform the data binding and other logic from code-behind).
Also, if i write the java script for OnRowSelected client event (_doPostBack passing the gridId), the post back happens only once. I need to click a row with mouse again before i could navigate using the arrow keys.
Kindly suggest.
Thanks
Tarun Singla