访问 GridPanel 基本参数
我有搜索框和带分页的 GridPanel。输入搜索条件,单击按钮,结果将显示在 GridPanel 中...简单
我注意到一个错误,当我搜索返回 5 页记录的内容时,转到最后一页,然后执行另一个返回 1 页的搜索我在第 5 页,共 1 页。
起始页参数位于 GridPanel 的 BaseParameters 中,当执行新搜索时,如何访问它以将其重置回 0?
这可能很简单,但我对 ext.net 完全陌生
I have search box and a GridPanel with paging. You enter search criteria click a button and the results display in the GridPanel...simple
I have notice a bug, when I search for something that returns 5 pages of records, go to the last page, then perform another search that returns 1 page I am on page 5 of 1.
The start page parameter is in the BaseParameters of the GridPanel, how can I access this to reset it back to 0 when a new search is performed?
This is probably very easy but I am completely new to ext.net
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调用PagingToolbar的changePage()方法。此方法不包括所需页码的整数。查看下面的链接了解更多详细信息。
http://docs.sencha。 com/ext-js/3-4/#!/api/Ext.PagingToolbar-method-changePage
谢谢,
Gav
you can invoke the changePage() method of the PagingToolbar. This method excepts an Integer for the desired page number. Check out the link below for more details.
http://docs.sencha.com/ext-js/3-4/#!/api/Ext.PagingToolbar-method-changePage
Thanks,
Gav