Hello,
There is no interaction between the two events.
OnSelectedIndexChanged is fired only when selection is changed.
So if you select the row, then the
OnSelectedIndexChanged will be fired. But if you only click inside the grid, the event will not be fired.
Also you could set the
EnablePostBackOnRowClick property (in the
ClientSettings of the grid) to "
True". In this case a postback will occur when you click a row. Then you could check the if the (
e.CommandName is
"RowClick" in the RadGrid's
ItemCommand event.
Kind regards,
Vasil
the Telerik team
Sharpen your .NET Ninja skills! Attend Q1 webinar week and get a chance to win a license!
Book your seat now >>