GridControl (virtual mode) arrow keys

Hi,

I am using a GridControl in virtual mode. Now when I disable the row header via Properties.RowHeader = false the arrow key don't work anymore.

Is this a bug or do I have to set another option?

I have attached a sample where you can see the behavior.

Cheers,
Charles

GridControlExample.zip

2 Replies

CH Charles June 25, 2007 05:53 PM UTC

Sorry I forgot to mention that with "arrow keys don't work anymore" I meant that the navigation between the cell with the arrow keys don't work anymore.

Cheers,
Charlse


HA haneefm Syncfusion Team June 25, 2007 06:39 PM UTC

Hi Charles,

The Changes were made in the version 4 code to optimize the way hidden rows and columns are being handled. This code change caused a problem when you hide the row/column headers using

this.GridControl1.Properties.ColHeaders = false
this.GridControl1.Properties.RowHeaders = false

A work around for a GridControl is to just set gridControl1.ColWidths[0] = 0 and gridControl1.RowHeights[0] = 0 to hide the row and column headers.

Best regards,
Haneef

Loader.
Up arrow icon