Hi,
With my grid def below, the vertical scroll bars work fine but I never get a horizontal scrollbar. It appears to not adhere to my HeaderStyle-Width and sizes the columns to fit width.
<
telerik:RadGrid
ID
=
"grd1"
runat
=
"server"
OnNeedDataSource
=
"grd1_NeedDataSource"
OnPreRender
=
"grd1_PreRender"
OnSelectedIndexChanged
=
"grdx_SelectedIndexChanged"
AllowPaging
=
"true"
PageSize
=
"5"
Height
=
"300px"
Width
=
"500px"
AutoGenerateColumns
=
"false"
>
<
ClientSettings
AllowKeyboardNavigation
=
"true"
EnablePostBackOnRowClick
=
"true"
Scrolling-AllowScroll
=
"true"
Scrolling-UseStaticHeaders
=
"true"
>
<
Selecting
AllowRowSelect
=
"true"
></
Selecting
>
</
ClientSettings
>
<
MasterTableView
DataKeyNames
=
"ID"
TableLayout
=
"Fixed"
>
<
Columns
>
<
telerik:GridBoundColumn
UniqueName
=
"ID"
DataField
=
"ID"
Display
=
"false"
HeaderStyle-Width
=
"10"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"User"
DataField
=
"ChangeUser"
HeaderStyle-Width
=
"50"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"AD_Path_Name"
DataField
=
"ADName"
HeaderStyle-Width
=
"50"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Start"
DataField
=
"StartDate"
DataType
=
"System.DateTime"
HeaderStyle-Width
=
"60"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"End"
DataField
=
"EndDate"
DataType
=
"System.DateTime"
HeaderStyle-Width
=
"60"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Total"
DataField
=
"TotalCount"
DataType
=
"System.Int32"
HeaderStyle-Width
=
"30"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Errors"
DataField
=
"ErrorCount"
DataType
=
"System.Int32"
HeaderStyle-Width
=
"30"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"Source"
DataField
=
"Source"
HeaderStyle-Width
=
"100"
></
telerik:GridBoundColumn
>
<
telerik:GridBoundColumn
UniqueName
=
"AD_Path"
DataField
=
"ADPath"
HeaderStyle-Width
=
"100"
></
telerik:GridBoundColumn
>
</
Columns
>
</
MasterTableView
>
</
telerik:RadGrid
>