Hi,
We have a problem with the rendering of the grid(version 2009.3.9.1203) since we upgrade to version 2009 Q3.
He is the code we use to set the columns width :
Me.Instance.DataSource = Value
Me.Instance.GridElement.BeginUpdate()
If Me.Instance.MasterGridViewTemplate.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.None Then
For Each column As GridViewDataColumn In Me.Instance.Columns
column.BestFit()
Next
End If
Me.Instance.GridElement.EndUpdate()
Since we update, the column.BestFit() don't work and all column have like width of 1...? We usually have grid with more than 10 columns and it has always work fine.
What should we do to fix it?
thx