2013-03-05 98 views
0

here the pagger should also show with 0 of 0 records displayingenter image description here我正在使用telerik rad gridview。這是有分頁。當記錄超過頁面大小時,頁腳顯示分頁。即使沒有記錄,我也希望分頁頁腳保持顯示。在可能或應該顯示類似的東西「0 0的記錄顯示」強制Rad GridView的尋呼機顯示

我使用傳銷:GridView的是從Telerik的拉德的GridView繼承:

<mlm:GridView ID="mlmGridView" runat="server" OnItemDataBound="mlmGridView_ItemDataBound"AutoGenerateColumns="true" ShowGroupPanel="true" SkinID="Grid" AllowSorting="True" AllowMultiRowSelection="True" AllowPaging="True" PageSize="13"> 
    <MasterTableView Width="100%" Summary="GridView table">    
    <NoRecordsTemplate> 
     No records to display ! 
    </NoRecordsTemplate> 
    <Columns> 
    </Columns> 
    </MasterTableView> 
    <ClientSettings ReorderColumnsOnClient="True" AllowDragToGroup="True" AllowColumnsReorder="True"> 
    <Selecting AllowRowSelect="True"></Selecting> 
    <Resizing AllowColumnResize="True" EnableRealTimeResize="True"></Resizing>         
    </ClientSettings>    
    <GroupingSettings ShowUnGroupButton="true" /> 
</mlm:GridView> 

回答