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

[Solved] Grid Missing Pagging Buttons

0 Answers 90 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Adam Pehas
Top achievements
Rank 1
Adam Pehas asked on 12 May 2009, 09:10 PM
I have a telerik grid that I recently enabled pagging on.  For some Reason the images that allow the user to move through the pages are missing.  

I have a screen capture to show the image and where the buttons are missing http://cid-d277c11ef8b7f500.skydrive.live.com/self.aspx/Public/RadGrid.JPG


 

<telerik:RadGrid ID="grdAllGraphics" runat="server" AutoGenerateColumns="False"

 

 

GridLines="None" Skin="Web20" Width="300px" AllowMultiRowSelection="True"

 

 

AllowCustomPaging="True" AllowPaging="True" PageSize="2" ShowFooter="True"

 

 

ShowGroupPanel="True" ShowStatusBar="True">

 

 

<PagerStyle AlwaysVisible="True" NextPageToolTip="Where is this" BorderStyle="Solid" PageButtonCount="2" />

 

 

<MasterTableView>

 

 

<RowIndicatorColumn>

 

 

<HeaderStyle Width="20px" />

 

 

</RowIndicatorColumn>

 

 

<ExpandCollapseColumn>

 

 

<HeaderStyle Width="20px" />

 

 

</ExpandCollapseColumn>

 

 

<Columns>

 

 

 

 

 

 

<telerik:GridTemplateColumn

 

 

UniqueName="CheckBoxTemplateColumn">

 

 

<ItemTemplate>

 

 

<asp:CheckBox

 

 

ID="CheckBox1" runat="server"

 

 

OnCheckedChanged="ToggleRowSelection"

 

 

AutoPostBack="True"

 

 

/>

 

 

</ItemTemplate>

 

 

 

</telerik:GridTemplateColumn>

 

 

 

 

<telerik:GridBoundColumn DataField="PartNo" HeaderText="Part #"

 

 

UniqueName="column">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridBoundColumn DataField="Description" HeaderText="Description"

 

 

UniqueName="column1">

 

 

</telerik:GridBoundColumn>

 

 

<telerik:GridTemplateColumn HeaderText="Graphic" UniqueName="TemplateColumn">

 

 

<ItemTemplate>

 

 

<asp:HyperLink ID="HyperLink1" Target="_blank" NavigateUrl ='<%# Eval("ImagePath") %>' runat="server"> <img ALT='' src='<%# Eval("ImagePath") %>' width='75'/> </asp:HyperLink>

 

 

 

</ItemTemplate>

 

 

</telerik:GridTemplateColumn>

 

 

 

<telerik:GridBoundColumn DataField="GraphicInventoryID" UniqueName="GraphicInventoryID" >

 

 

</telerik:GridBoundColumn>

 

 

</Columns>

 

 

 

 

 

</MasterTableView>

 

 

<ClientSettings AllowRowsDragDrop="False">

 

 

<Selecting AllowRowSelect="True" />

 

 

</ClientSettings>

 

 

</telerik:RadGrid>

 

No answers yet. Maybe you can help?

Tags
Grid
Asked by
Adam Pehas
Top achievements
Rank 1
Share this question
or