Home - Forums-.NET - FlyGrid.Net (Windows Forms) - flygrid headers are not clickable

FlyGrid.Net (Windows Forms)

.NET Datagrid - Fast, highly customizable, industry standards .NET data grid control for WinForms

This forum related to following products: FlyGrid.Net

flygrid headers are not clickable
Link Posted: 07-Oct-2013 07:33
Hey,
I'm trying to set the header clockable using:

flyGrid1.Columns.Options = ColumnsOptions.Clickable | ColumnsOptions.ShowHeaders |
                                       ColumnsOptions.ShowSortOrderMark | ColumnsOptions.Sizable;

but the headers are still not clickable (and not marked with blue when the mouse is down).

any suggestions?

Thanks
Link Posted: 07-Oct-2013 08:11
Seems to be, you set flyGrid1.Enabled to False?
Link Posted: 09-Oct-2013 01:20
its seems to work when I put it in the [Disgner] part of the code.
but when I'm putting it outside it doesn't.

also I noticed that when I change
this.flyGrid1.EndInit();
to
((System.ComponentModel.ISupportInitialize)(this.flyGrid1)).EndInit();
and also the BeginInit() its working.