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
150
How to make ultra grid cell in edit mode
posted

Hi All,

 I have made ultra grid's column non editable, now I want to make cell editable of selected row only.

I have used the following code to to meke column non editable

private void Grid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)

{

e.Layout.Bands[0].Columns[10].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;

 

 e.Layout.Bands[0].Columns[10].CellActivation = Infragistics.Win.UltraWinGrid.Activation.NoEdit;

By the above code Column[10] is become non editable.

Now I want to make cell editable of column[10] of a particular row.

for eg;- when I click on cell[9] of first row than only cell[10] of first row becomes editable, not the whole column

how would I do this.

In short, I want to make particular cell editable not the whole column

Please help.

 

Thanks

Swapnil