This is a migrated thread and some comments may be shown as answers.

Problem with Compnent RadGrid dir ="rtl"

2 Answers 83 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Michael
Top achievements
Rank 1
Michael asked on 15 Jan 2012, 05:11 PM
Hello!


I need help. I have problem with running the RadGrid dir="rtl" in Internet Explorer. When screen resolution is 1024 X 768, RadGrid is wider then 1024px. While page is loading, I see horisontal scrolling is begining from right side (pic.1), but in the next second horisontal scrolling turn to begin from left side (pic.2). 

<div dir="rtl">
            <telerik:RadGrid ID="RadGrid2" runat="server" AllowFilteringByColumn="true" AllowPaging="True"  
                AllowSorting="True" Skin="Outlook" OnNeedDataSource="RadGrid2_NeedDataSource" OnSortCommand="RadGrid2_SortCommand" 
                OnItemCommand="RadGrid2_ItemCommand" OnItemDataBound="RadGrid2_ItemDataBound" EnableLinqExpressions="false"
                OnPreRender="RadGrid2_PreRender" AutoGenerateColumns="false" Height="530px"  Culture="he-IL"  > 
                <ClientSettings  EnableRowHoverStyle="true"  AllowKeyboardNavigation="true" KeyboardNavigationSettings-FocusKey="Y"
                    KeyboardNavigationSettings-RebindKey="R" >  
                    <KeyboardNavigationSettings EnableKeyboardShortcuts="true" FocusKey="T" /> 
                    <ClientEvents OnRowDblClick = "RadGrid_RowDblClick"/>  
                </ClientSettings>  
                <PagerStyle NextPageText="דף הבא" PrevPageText="דף קודם" Position="Bottom"  />            
         ....       <MasterTableView dir="RTL">

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 16 Jan 2012, 06:11 AM
Hello Michael,

Try setting the following CSS.
CSS:
.RadGrid .rgDataDiv
{
  overflow-y:scroll !important;
}

-Shinu.
0
Michael
Top achievements
Rank 1
answered on 17 Jan 2012, 07:49 AM
Thank you!
But it does not work in my case.
Tags
Grid
Asked by
Michael
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Michael
Top achievements
Rank 1
Share this question
or