Hi,
I added an unbounded checkbox column to WinGrid. But for some reason, the checkbox column is readonly. I cannot check or uncheck it. Every time I select the grid, the whole row gets highlighted and I can't check or uncheck the checkbox column. Is there any other missing property I don't know about. Here are the codes I used. Any help is appreciated.
this.DisplayLayout.Bands[0].Columns.Add("CheckBox", "CheckBox");
this.DisplayLayout.Bands[0].Columns["Checkbox"].DataType = typeof(bool);
this.DisplayLayout.Band[0].Columns["CheckBox"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
this.DisplayLayout.Override.SelectTypeCell = SelectType.Default;
this.ActiveRow = null;
Is sounds like your CellClickAction is set to RowSelect, so you won't be able to edit any fields in the grid. Note that in recent versions of the grid, you can set the CellClickAction on the Column, so you could set it on your CheckBox column to override any band-level settings.