Hello,
I create all columns programmatically and try to add a command column. This is how I do that:
Thank you.
I create all columns programmatically and try to add a command column. This is how I do that:
Columns.Clear(); Columns.Add(new GridEditCommandColumn { ItemStyle = { Width = Unit.Pixel(50) }, ButtonType = GridButtonColumnType.ImageButton, }); foreach (GridColumn column in _columnBuilder.BuildColumns(_zsheet, _zTable, _dataSourceProvider)) { Columns.Add(column); }Column added successfully but I can't see its header. 1st data column header is placed over command column. Do I have to do something else when adding a command column?
Thank you.