DataBoundGrid Column Widths

Is there a way to set a Data Bound Grid''s Column width on load. It seems that the columns take a default width on the initial load.

1 Reply

AD Administrator Syncfusion Team December 18, 2003 04:24 PM UTC

Hi Jeff, Make sure that AllowResizeToFit property is set to false. When this is true, the GridDataBoundGrid autosizes the grid based on the header text. this.gridDataBoundGrid1.AllowResizeToFit = false; this.gridDataBoundGrid1.Model.ColWidths[1] = 50; Regards, Jay N

Loader.
Up arrow icon