I have a grid with many rows in it. If I remove a row my refresh logic is moving the scroll bar back to the top position. I can set the selected row properly after the remove, but the row is not visible to the user. Is there a way to scroll to the active or selected row?
{
_tableUltraGrid.ActiveRowScrollRegion.ScrollRowIntoView( _tableUltraGrid.Rows[rowIndex] );
}
If you set the ActiveRow (instead of selecting the row), then it will automatically be scrolled into view.