Hello,
I know this question has been asked frequently, but i cant get it to work.
I have a ultragrid that is bound to a bindingsource. In the InitializeLayout i add one column of datatype bool.I give the column the style CheckBox and the CellActivation is AllowEdit.
When running i see the checkbox, but i cant click it. The state remains unchecked.
Can anyone help me with this.
Thanks.
Kevin
Hi Kevin,
Everything in the grid is editable by default. So if you cannot edit the column, you must have disabled it somehow. There are a number of ways you could have to done this. This KB article describes all of them, so you might want to check your code and see if you are setting any of these properties.
HOWTO:How can I make a grid or a column, row, or cell in the UltraWinGrid disabled or read-only?
The settings are correct. It is a very simple form.
I now use the CellClick event to set the state of the checkbox.
Try setting the 'Cell Click Action' property of that column to "Edit" it should work.