I want to see pager even if there is only one page, so I add AlwaysVisible="true" to the PagerStyle, but seems no effect.
What's wrong with it?
What's wrong with it?
<telerik:RadGrid ID="RGPlaylist" Skin="ParagalloSkin" EnableEmbeddedSkins="false" CssClass="list_one" runat="server" Width="800px" |
GridLines="None" AutoGenerateColumns="false" |
ForeColor="#333333" |
AllowSorting="True" PageSize="10" |
DataKeyNames = "PlaylistID" OnPreRender="RGPlaylist_PreRender" OnNeedDataSource="RGPlaylist_NeedDataSource" |
AllowPaging="true" AllowFilteringByColumn="true" AllowAutomaticDeletes="true"> |
<ItemStyle CssClass="rows" /> |
<AlternatingItemStyle CssClass="alternate_rows" /> |
<GroupingSettings CaseSensitive="false" /> |
...... |
<FooterStyle BackColor="#fff" Font-Bold="True" ForeColor="White" /> |
<HeaderStyle BackColor="#b6b6b6" Font-Bold="True" CssClass="toprow" /> |
<PagerStyle Mode="NumericPages" ShowPagerText="true" CssClass="gridPager" BackColor="#ececea" ForeColor="Gray" AlwaysVisible="true" PagerTextFormat="Endre side: {4} Side {0} av {1}, produkt {2} til {3} av totalt {5}"/> |
<SortingSettings SortToolTip="Klikk her for å sortere" SortedAscToolTip="sortert stigende" |
SortedDescToolTip="sortert desc" /> |
</telerik:RadGrid> |