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

Slider Issue with R2L on FF/Chrome/Safari

2 Answers 63 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Andrew
Top achievements
Rank 1
Andrew asked on 15 Feb 2011, 11:18 AM
I'm having a problem with the Slider when using R2L languages. The slider is being displayed on top of th Page x of y of the RadGrid.

Issue occurs only on FireFox/Chrome/Safari. Works fine with IE.

<PagerStyle Mode="slider" Wrap="true"></PagerStyle>

Your earliest reply is appreciated.

Thanks,
Andrew

2 Answers, 1 is accepted

Sort by
0
Accepted
Galin
Telerik team
answered on 18 Feb 2011, 01:09 PM
Hello Andrew,

Thank you for bringing this issue to our attention. We will research the problem in the future releases. As a temporary workaround I can suggest you to use the code snippet below:
CSS:
.RadGridRTL input.rgRefresh,
.RadGridRTL input.rgAdd
{
    margin: 0 0 0 4px;   
}
         
.RadGridRTL .rgWrap
{
    width: 40%;
}
          
.RadGridRTL .rgInfoPart
{
    text-align: left;         
}
          
.RadGridRTL .rgSliderLabel
{
    float: right;   
}
         
.RadGridRTL .rgPager div.RadSlider
{
    float: right;
    margin: 0 0 0 10px;   
}
 
Regards,
Galin
the Telerik team
0
Andrew
Top achievements
Rank 1
answered on 21 Feb 2011, 04:31 PM
Thanks for your help. All I needed is

.RadGridRTL .rgPager div.RadSlider 
{
    float: right;
    margin-left: 10px;    
}
Tags
Grid
Asked by
Andrew
Top achievements
Rank 1
Answers by
Galin
Telerik team
Andrew
Top achievements
Rank 1
Share this question
or