GridControl Cell Keyboard Issue

Hi,

It seems weird that if you set Grid.Properties.RowHeaders to false through designer, then the key board movements like up, down, left, right and tab wont work. However, if the property was to set to false not through designer, the movements would be OK.
Set the column 0 with to 0 will hide the row header, and no key board movement issue.

Thanks,

Q

1 Reply

AD Administrator Syncfusion Team June 7, 2007 04:47 PM UTC

This problem was added in version 4.x because the hidden row/col support was modified at that time to handle large numbers of hidden rows/cols more efficiently. This problem was a side effect of that change. For now, we recommend you set the:

grid.Model.RowHeights[0] = 0;
grid.Model.ColWidths[0] = 0;

to hide the headers. And as you stated, this does avoid the broken navigation problem.

Loader.
Up arrow icon