I have a datatable bound to a UltraCombo grid - the datatable has a boolean column which is shown as a checkbox in the grid. The user should be able to check/uncheck the boolean value without being able to edit the other columns. How is this done in the control?
The checkbox is shown in the grid but nothing happens when the user click on it.
Please help.
Thanks in advance.
/K
You have to set this property to the key of a column which already exists in the dropdown. If you do not have such a column in your data source, then you can add an unbound column using:
combo.DisplayLayoutBands[0].Columns.Add
Setting the CheckStateMember does not give me a check column??
How do I enable this functionallity?
The combo use a grid which contains a dataset - the dataset contains a boolean column which must be set (true/false) when the user click on the checkbox column.
Hi,
What exactly do you want to happen when you check/uncheck items?
You can do something like this:
this.ultraCombo1.CheckedListSettings.CheckStateMember = "Boolean 1";
This will set up your combo so that the field you specify determines what is selected in the Combo.