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

Datapager not working on some computers

1 Answer 58 Views
DataPager
This is a migrated thread and some comments may be shown as answers.
maha
Top achievements
Rank 1
maha asked on 22 Dec 2010, 10:20 AM
I have the following code
<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

1 Answer, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 23 Dec 2010, 10:20 AM
Hello Maha,

Unfortunately I was not able to replicate the described issue. Please examine the attached sample project and see if it works for you or if I am leaving something important out.

Regards,
Pavlina
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
DataPager
Asked by
maha
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Share this question
or