Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1020
Making the UltraGrid column editable.
posted

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

Parents
  • 469350
    Suggested Answer
    Offline posted

    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.

Reply Children