Hi All,
I have a RadGrid with KeyboardNavigationSettings to use up and down arrows. When I click on a row, a ServerSide event is launched (with C# codebehind), but when I select a row with arrows the event is not fired. I suppose it could be a normal behaviour, but how could I launch that specific event?
Maybe a clientside event with OnRowSelected, but something like this
doesn't work.
Thanks
I have a RadGrid with KeyboardNavigationSettings to use up and down arrows. When I click on a row, a ServerSide event is launched (with C# codebehind), but when I select a row with arrows the event is not fired. I suppose it could be a normal behaviour, but how could I launch that specific event?
Maybe a clientside event with OnRowSelected, but something like this
if
(eventArgs.get_keyCode() == 38) {
var
grid = $find(
"<%#RadGrid1%>"
);
grid.SelectedIndexChanged(null,null);
}
doesn't work.
Thanks