Hi Friends,I have a List<> object bound to the grid. I have 2 columns in the UltraGrid.I want to make the 2nd column editable. Here is the code I am using :-
e.Layout.Bands[0].Columns[1].CellActivation = Infragistics.Win.UltraWinGrid.Activation.AllowEdit;
The column does not become editable and the entire row gets selected on click.Please help.
Regards,Sid
Hi Sid,
If the whole row is getting selected when you click the cell, then this is probably because you have CellClickAction set to RowSelect.
Or... the field in the data source might be read-only.
Hi Mike,
I found the solution. I just reset the ActiveRowAppearance and ActiveCellAppearancethrough the properties window in Visual Studio .NETRegards,Sid.