在jqgrid中设置页面
我有以下代码来更改 Jqgrid 的页面。
function setPage() {
$('#editGrid').setGridParam({ page: 10 }).trigger('reloadGrid');
alert("Success");
}
我收到成功消息,但页面不会改变。目前我在网格的 loadcomplete 部分运行该函数。
任何帮助将不胜感激。
I've got the following code to change the page of the Jqgrid.
function setPage() {
$('#editGrid').setGridParam({ page: 10 }).trigger('reloadGrid');
alert("Success");
}
I get the success message but the page wont change. Currently I run the function in the loadcomplete section of the grid.
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.trigger('reloadGrid') 会将网格重新加载到第 1 页。因此,您执行了 setGridParam({page:10}) 但紧接着 .trigger('reloadGrid') 将网格刷新到第 1 页。
将网格设置为第 10 页执行以下操作:
The .trigger('reloadGrid') will reload the grid to page 1. So you did setGridParam({page:10}) but then right after .trigger('reloadGrid') refreshed the grid to page 1.
To set the grid to page 10 do this: