jqGrid弹出表格设置分页

Posted poisonousmushrooms

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jqGrid弹出表格设置分页相关的知识,希望对你有一定的参考价值。

点击时候方法


// 成员人数
function modify6(rows){
$("#table_list_2").jqGrid("clearGridData");
$("#table_list_2").jqGrid(‘setGridParam‘,{
datatype:"json",
postData:{
"id":rows.club_id
},
url:"",
}).trigger("reloadGrid");
setTimeout(function () {
var width = $(‘#Tmoda‘).width();
$(‘#table_list_2‘).setGridWidth(width);
$(".jqGrid_wrapper_2").show();
}, 500)
}

 

主体表格记得添加jsonReader


jsonReader:{
root: "data.data", //数据位置
page: "data.page_index", //页数
total: "data.total_count",//总页数
records: "data.total", //总数据
},

以上是关于jqGrid弹出表格设置分页的主要内容,如果未能解决你的问题,请参考以下文章

jsp如何在本页面弹出的对话框是图片

layui弹出框怎么重新让父页面分页

element-plus表格内select弹出框位置

单击图标时如何在 JqGrid 中打开带有 TextArea 的弹出窗口?

jquery把jqgrid中数据导出excel表格求助

jqGrid 如何控制分页显示以及数据条数。