Scenerio:
- Allow Scrolling of Columns within grid. (Horizontal)
- Don't Scroll Rows within grid. (Vertical)
- Don't scroll Pager.
Using the Frozen Column Example we turned on the scrolling. This turns on the scrolling of the columns and rows.
<
telerik:RadGrid
ID
=
"gridServiceMaster"
runat
=
"server"
Width
=
"100%"
>
<
ClientSettings
>
<
Scrolling
AllowScroll
=
"True"
UseStaticHeaders
=
"True"
>
</
Scrolling
>
</
ClientSettings
>
<
MasterTableView
TableLayout
=
"Fixed"
/>
</
telerik:RadGrid
>
Next, to turn off the vertical scrolling we override the height that is assigned to the inner div;
<
style
type
=
"text/css"
>
.rgDataDiv
{
height: auto !important;
}
</
style
>