Hi Telerik
I am using a couple lines of css to get the vertical scroll on the left side instead of the right. Putting the css in works as expected but the horizontal scroll now positioned on the right instead of the left most position.
The bold css for the rtl moved the vertical scroll but also adjust the hor scroll to the right. Is there a way i can move that hor scroll back to the left? Any css needed?
Thanks!
I am using a couple lines of css to get the vertical scroll on the left side instead of the right. Putting the css in works as expected but the horizontal scroll now positioned on the right instead of the left most position.
<
style
type
=
"text/css"
>
.MyRadGrid {
direction: rtl;
}
.MyRadGrid table {
direction: ltr;
}
</
style
>
<
telerik:RadGrid
runat
=
"server"
ID
=
"RadGridMembers"
CssClass
=
"MyRadGrid"
AutoGenerateColumns
=
"false"
Width
=
"970px"
Height
=
"560px"
AllowSorting
=
"true"
>
<
ClientSettings
Scrolling-UseStaticHeaders
=
"true"
Scrolling-AllowScroll
=
"true"
/>
<
MasterTableView
runat
=
"server"
AllowFilteringByColumn
=
"true"
EditMode
=
"EditForms"
DataKeyNames
=
"FamilyId, MemberId"
TableLayout
=
"Fixed"
Width
=
"100%"
>
...
...
</
MasterTableView
>
</
telerik:RadGrid
>
The bold css for the rtl moved the vertical scroll but also adjust the hor scroll to the right. Is there a way i can move that hor scroll back to the left? Any css needed?
Thanks!