Hi
i have a rad frid craeted dynamicaly and i want to increase the width of the column in Edit mode.
i tried several things but failed.
boundNameColumn.FilterControlWidth =
Unit.Pixel(600);
boundNameColumn.HeaderStyle.Width = Unit.Pixel(600);
boundNameColumn.ItemStyle.Width =
Unit.Pixel(600);
grid.ClientSettings.EnableAlternatingItems =
true;
grid.MasterTableView.AlternatingItemStyle.BackColor =
Color.FromName("#F2F3F5");
grid.MasterTableView.TableLayout =
GridTableLayout.Fixed;
grid.MasterTableView.AllowFilteringByColumn =
true;
grid.MasterTableView.EditMode =
GridEditMode.InPlace;
grid.MasterTableView.EditItemStyle.Width =
Unit.Pixel(600);
please suggest how to achieve this.