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.
How do you move the row header arrow programmatically in a GDBG, without changing currently selected rows?
Also, could you explain what the row header arrow is indicating? When I select rows from code, the arrow always stays at its last position.
FYI I''m still using V1.6*
Thanks,
Doug
ADAdministrator Syncfusion Team July 20, 2004 12:54 PM UTC
The arrow points to the position in the CurrencyManager object for the bindingcontext of the grid. So code like this would be one way to set it.
CurrencyManager cm = (CurrencyManager)this.grid.BindingContext[this.grid.DataSource, this.grid.DataMember];
cm.Position = someZeroBasedValue;
Another way is to set the grid.Binder.CurrentPosition property.
DLDoug LindJuly 20, 2004 05:48 PM UTC
Thanks Clay,
It worked well!
>The arrow points to the position in the CurrencyManager object for the bindingcontext of the grid. So code like this would be one way to set it.
>
>CurrencyManager cm = (CurrencyManager)this.grid.BindingContext[this.grid.DataSource, this.grid.DataMember];
>cm.Position = someZeroBasedValue;
>
>
>Another way is to set the grid.Binder.CurrentPosition property.