I have the following code
I am using RadDataPagerSliderField with this css style
On my computer i am able to slide the navigation bar on click on the horizontal arrow it will go to the next page. But on other computer they can only navigate using the up and down arrows, they cant slide it. What is the reason?I need it to work on all pcs
<table cellpadding="0" cellspacing="0" width="100%"> <tr> <td> <asp:Panel ID="ListViewPanel1" runat="server"> <telerik:RadListView ID="RadListView1" Width="100%" AllowPaging="True" runat="server" PageSize="9" AllowSorting="true" OnNeedDataSource="RadListView1_NeedDataSource" ItemPlaceholderID="ProductsHolder" > <LayoutTemplate> <fieldset id="FieldSet1" style="border:none; padding-left :30px;"> <asp:Panel ID="ProductsHolder" runat="server" /> </fieldset> </LayoutTemplate> <ItemTemplate> <div class="category"> <table cellpadding="0" cellspacing="0" > <tr><td> <a style='cursor:pointer;' href='<%# DetermineLink(Eval("id"), Eval("center"))%>'> <img src='<%#DetermineImage(Eval("id"), Eval("center"))%>' border='0' hspace='0' width='<%#Eval("w")%>' height='<%#Eval("h")%>' align="middle"/> </a> </td></tr> <tr> <td > <%#Mid(Eval("Title"), 1, 25)%> </td> </tr> <tr><td><br /></td></tr> </table> </div> </ItemTemplate> </telerik:RadListView> </asp:Panel> </td> <td valign="middle" align="center" > <telerik:RadDataPager ID="RadDataPager1" runat="server" PagedControlID="RadListView1" PageSize="9" Height="430px" Width="16px" > <Fields > <telerik:RadDataPagerSliderField SliderDragText="" SliderDecreaseText="" SliderIncreaseText="" SliderOrientation ="Vertical" /> </Fields> </telerik:RadDataPager> </td> </tr> </table>I am using RadDataPagerSliderField with this css style
.RadDataPager_Default { border:none; background-color:Transparent; width:5px; padding-left : 45px; min-height:200px; } .RadDataPager_Default .rdpSliderLabel { display: none ; } .RadSlider_Default .rslTrack { border-color: #b9b9b9 #939393 #939393 #b9b9b9; height: 400px !important; } .RadSlider .rslVertical .rslIncrease { bottom: -250px !important; } .RadSlider_Default .rslVertical a.rslHandle { background-image:url('Slider/HandlesVertical.gif'); } .RadSlider_Default .rslVertical a.rslDraghandle { background:url('Slider/DragVerticalHandleRight.gif') no-repeat; }On my computer i am able to slide the navigation bar on click on the horizontal arrow it will go to the next page. But on other computer they can only navigate using the up and down arrows, they cant slide it. What is the reason?I need it to work on all pcs