Datagrid Column resizing

  • Thread starter Thread starter Chakravarti Mukesh
  • Start date Start date
C

Chakravarti Mukesh

Hi,
How can column width of DataGrid could be changed(in late data binding)? By
default width is decided by the column heading width.
Thnaks
Mukesh
 
Or you can do this for example for a button :-
Private Sub DataGrid1_ItemCreated(ByVal sender As Object, ByVal e As
System.Web.UI.WebControls.DataGridItemEventArgs) Handles
DataGrid1.ItemCreated
Dim drv As DataRowView
If e.Item.ItemType = ListItemType.Item Then
CType(e.Item.Cells(2).Controls(0), Button).Width =
Unit.Point(250)
End If
end if
Patrick
 
Back
Top