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
I found its. please go and follow. in propty of Columb CellClickActivation = Edit
after Set Propty Column are Edit Able Mode
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?
I found another property and set it as 'Grid.DisplayLayout.Override.CellClickAction = Edit'.
Still NO LUCK
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,