Problem with gridControl

Hello,
I have a problem with the grid control of syncfusion when property enter key behavior is enabled and rowheader= true and colheader = true , the transition from one cell to another is no problem with the arrow keys and the Enter key on the keyboard, but when rowheader =false and colheader = false, arrows key and the enter key on the keyboard no longer work, if someone a solution to offer me I would be grateful, thank you


1 Reply

RC Rajadurai C Syncfusion Team January 22, 2009 10:29 AM UTC

Hi Le'ONidaS,

Thanks for your interest in Syncfusion products.

Instead of setting RowHeaders and ColHeaders properties to false. You can try using the following code in your application.

this.gridControl1.Model.HideCols[0] = true;
this.gridControl1.Model.HideRows[0] = true;


This allows the enterkey behavior and arrow keys functionality in cells. Also, it gives same appearance as those properties does.

Regards,
Rajadurai


Loader.
Up arrow icon