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.
On my form load,
I disable the grid,
Then I enable the grid,
I select a cell using MoveTo()
I don't get the CurrentCellActivating event!?
If i don't do the disable/enable then i get my message,
any ideas?
Brian
ADAdministrator Syncfusion Team April 16, 2003 03:09 PM UTC
In formload, if you want to make sure that a CurrentCell.MoveTo 'takes', then you should set
this.grid.ForceCurrentCellMoveTo = true;
ADAdministrator Syncfusion Team April 16, 2003 07:27 PM UTC
If the above suggestion handle the problem, also try setting the ActiveControl to the grid.
this.ActiveControl = this.gidControl1;
BKBrian KeatingApril 17, 2003 05:43 AM UTC
> In formload, if you want to make sure that a CurrentCell.MoveTo 'takes', then you should set
>
>
> this.grid.ForceCurrentCellMoveTo = true;
>
>
This solved my problem. thanks for good support.
Brian