私はtelek rad gridviewを使用しています。これはページングを持っています。レコードがページ サイズを超えると、ページング フッターが表示されます。レコードが来なくても、ページング フッターを表示し続けたい。「0 件中 0 件のレコードが表示されます」のようなものが表示される場合があります。
私は mlm:Gridview を使用しています。これは Telerik Rad 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>