Hi,
I have two radGridViews on my page (representing the ToDo Tasks and the Completed Tasks) along with a third Grid which shows the details of the selected row in either of the two radGridViews.
I tried explicitly setting the focus on the selected radGridView using the code below:
private void RadGridView1_SelectionChanged(object sender, SelectionChangeEventArgs e)
{
//some code
RadGridView1.Focus();
}
private void RadGridView2_SelectionChanged(object sender, SelectionChangeEventArgs e)
{
//some code
RadGridView2.Focus();
}
This still doesn't help me. When I select ToDo GridVIew (RadGridView1)and it shows the details on the normal GRID. Then I select on the CompletedGridView(RadGridView2) and it also shows the details on the normal GRID. But what I want to avoid is after the second step, a selected row is highlighted in both the GridViews.
Any help will be appreciated.
Thanks,
Syed Nadeem.