0

在这里,寻呼机还应该显示 0 条记录中的 0 条在此处输入图像描述我正在使用 Telerik rad gridview。这是有分页。当记录超过页面大小时显示分页页脚。即使没有记录,我也希望分页页脚保持显示。它可能或应该显示类似“0 of 0 records display”的内容

我正在使用从 Telerik Rad Gridview 继承的 mlm: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>
4

1 回答 1

1

您可以将PagerStyle-AlwaysVisible设置为true

<mlm:GridView PagerStyle-AlwaysVisible="True" ...>
于 2013-03-06T00:31:52.550 回答