The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
In a grid control on a panel, if
you tab focus to the grid, it scrolls to
the bottom. This occurs before OnGotFocus
is called, so I am not sure where this is
originating. How can I prevent this behavior?
thanks!
Lynn
ADAdministrator Syncfusion Team September 24, 2004 09:32 PM UTC
You can try catching the grid''s Enter event and try calling grid.CurrentCell.MoveTo(1,1) to see if that will avoid this problem. If not, try catching the grid''s Leave event and call the grid.CurrentCell.MoveTo(1,1) there to see if that will avoid this problem the next time the grid gets the focus.