1

我有一个Ext.netGridPanel 分页,分页为:

<ext:PagingToolbar ID="PagingToolbar1" runat="server" PageSize="25" StoreID="GridStore" DisplayMsg="Displaying {0} - {1} of {2} Records" EmptyMsg="No data to display" HideRefresh="true"  >
</ext:PagingToolbar>

我的问题是,最初Grid Panel加载时......在第一页中显示所有绑定的数据Grid Store......在浏览页面后分页显示正确。

4

1 回答 1

0

通过提供以下代码找到解决方案C#

  PagingToolbar1.PageSize = 25;
  PagingToolbar1.PageIndex = 1;
于 2011-12-22T05:11:53.187 回答