How can I make a single column editable?
I tried 'column.CellActivation = Activation.ALlowEdit'. But that does not work. Something else is supersiding this. I am setting this property in InitializeLayout Event handler.
Thanks for your help
Yogesh
The first thing that comes to mind is that the Override.CellClickAction property is set to a value that does not place the cell into edit mode when it is clicked.
Thanks Fallon,
I tried setting 'column.CellClickAction = CellClickAction.Edit' in the same event. That does not have any effect. IS there any property at the grid level? I haven't set anything explicitly other than this two lines of code. This seems to be grid's default behaviour. How can we change that?
thanks,
I found another property and set it as 'Grid.DisplayLayout.Override.CellClickAction = Edit'.
Still NO LUCK
Got it. Set the Grid.DisplayLayout.Override.ALlowUpdate = True and
disabled all columns using 'CellActivation' except for the one.
Thanks Mike for the link.
HOWTO:How can I make a grid or a column, row, or cell in the UltraWinGrid disabled or read-only?