Hi
I have set column style to be "Button" on first column of the data grid.
Is it possible to disable some of the buttons on data grid whose columnstyle is set to Button?
Thanks
Shivangi
Thanks Matthew, It works.
Hi Shivangi,
If you disable the cell it should follow through to the button. So for example:
private void ultraGrid1_InitializeRow(object sender, Infragistics.Win.UltraWinGrid.InitializeRowEventArgs e){ if (e.Row.Index % 2 == 0) { e.Row.Cells[0].Activation = Infragistics.Win.UltraWinGrid.Activation.Disabled; }}