我在点击下一个按钮时尝试将页码作为参数。
我正在尝试使用以下代码实现它:
onPaging: function(pgButton) {
if(pgButton == "next") {
window.alert("next clicked! \n page: " +
$('#userlist').getGridParam('page'));
}
}
没有任何成功(使用上面的代码下一个按钮不起作用)。我确信我错过了一些非常简单的东西。在网格代码中是否有特定的位置,我应该放置我的代码?
答案 0 :(得分:1)
pgButton
是String
。你应该写if (pgButton == "next")
。请参阅:http://www.trirand.com/jqgridwiki/doku.php?id=wiki:pager#events
答案 1 :(得分:1)
试试这个
onPaging: function(pgButton){ if(pgButton=="next_your_paging_tool_id"){ window.alert("next clicked! \n page: " + $('#userlist').getGridParam('page')); } },
在if条件中使用_附加您的分页工具ID的ID,如发布的代码