Hi,
I have a WPF radgridview, on a particular event (say button click) I want to change the selection on the grid to a different row based on some parameters. The grid is bound to a datatableview. I am setting it as
where count is the index of the row I want to select. Can you please tell me how to do it.
I have a WPF radgridview, on a particular event (say button click) I want to change the selection on the grid to a different row based on some parameters. The grid is bound to a datatableview. I am setting it as
grid.SelectedItem = ((
DataView)grid.ItemsSource).Table.Rows[count];
grid.CurrentItem = ((
DataView)grid.ItemsSource).Table.Rows[count];
grid.BringIndexIntoView(count);
where count is the index of the row I want to select. Can you please tell me how to do it.