Skip to content

Commit

Permalink
Merge pull request #8418 from N-thony/insert_row
Browse files Browse the repository at this point in the history
Bug fix on insert/delete row not jump to the top ot the page
  • Loading branch information
lloyddewit committed Jul 5, 2023
2 parents a74fcc9 + b6f3401 commit 5690bf2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion instat/UserControls/DataGrid/ReoGrid/ucrDataViewReoGrid.vb
Expand Up @@ -86,7 +86,9 @@ Public Class ucrDataViewReoGrid
End If
Next

grdData.CurrentWorksheet.ScrollToCell("A1") ' will always set the scrollbar at the top.
If dataFrame.clsFilterOrColumnSelection.bFilterApplied Then
grdData.CurrentWorksheet.ScrollToCell("A1") ' will always set the scrollbar at the top.
End If

'todo. As of 30/05/2022, the reogrid control version used did not have this setting option
'see issue #7221 for more information.
Expand Down

0 comments on commit 5690bf2

Please sign in to comment.