This question is locked. New answers and comments are not allowed.
Hello, I have a page with RadGridView. Each row has master-details that expand when user clicks on a [+] on a row. When I add a new record, I need the grid to:
1) scroll down to that new record so it is visible on the screen;
2) open that new record's master-details so the user can start entering data. The master-details of the new row must be visible on the screen also.
To scroll to the new row, I use:
and it works. But how can I programmatically open the master-details for that row?
Thanks,
Serge.
1) scroll down to that new record so it is visible on the screen;
2) open that new record's master-details so the user can start entering data. The master-details of the new row must be visible on the screen also.
To scroll to the new row, I use:
grid.ScrollIntoView(grid.SelectedItem);Thanks,
Serge.