I use UltraWinGrid bound to BindingSource, and i have a problem with edit cell in one of the columns. As I checked column doesn't have any property which could lock editing, and property which I try to edit have public getter and setter and is of type string. Could some one tell me where can be the problem or what property should be set to allow user to edit values in grid?
Hello PoKrec,
Please take a look at the 'CellActivation' property of the UltraGridColumn object:
grid.DisplayLayout.Bands[0].Columns[0].CellActivation
Please feel free to let me know if I misunderstood you or if you have any other questions.
Value in property CellActivation is set to AllowEdit, so i think it should be editable.
Hello,
Then there must something else overriding this behavior. Could please if possible attach your settings(source code) or a small sample project with your scenario.
I attached sample project that you could investigate this behavior.
The following line is the source of the issue I believe:
testList.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
Please do not hesitate to contact me if you need any additional assistance.
Thanks for your help