Hi,
is there a way to display a cell in a certain column only in the TemplateAddRow and AddRow in EditButton style?
I tried e.Row.Cells(...).Style in the InitializeRow Event, but the Event doesn't get fired the way I expect.
Best regardsFranz-Richard
Hi Franz,
Instead of InitializeRow, use InitializeTemplateAddRow:
private void ultraGrid1_InitializeTemplateAddRow(object sender, InitializeTemplateAddRowEventArgs e) { e.TemplateAddRow.Cells["Int32 1"].Style = Infragistics.Win.UltraWinGrid.ColumnStyle.EditButton; }