datagrid 选中某行,翻页再翻回来,发现选中的行没有选中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了datagrid 选中某行,翻页再翻回来,发现选中的行没有选中相关的知识,希望对你有一定的参考价值。
不管有没有设置复选框,其实都是一样的,都是idField属性没有设置,加上去即可。
1 $(function(){ 2 $(‘#dg‘).datagrid({ 3 url:‘ContactServlet‘, 4 toolbar:‘#tb‘, 5 fit:true, 6 fitColumns:true, 7 rownumbers:true, 8 pagination:true, 9 idField : ‘id‘,//没有设置,就会出现翻页不选中 10 columns:[[ 11 {field:‘id‘,title:‘id‘,checkbox:true}, 12 {field:‘lxr_xm‘,title:‘姓名‘,width:220,align:‘center‘}, 13 {field:‘lxr_tel‘,title:‘电话‘,width:220,align:‘center‘}, 14 {field:‘lxr_email‘,title:‘Email‘,width:220,align:‘center‘}, 15 {field:‘lxr_qq‘,title:‘QQ‘,width:220,align:‘center‘}, 16 {field:‘lxr_lx‘,title:‘联系‘,width:220,align:‘center‘} 17 ]] 18 }); 19 20 });
以上是关于datagrid 选中某行,翻页再翻回来,发现选中的行没有选中的主要内容,如果未能解决你的问题,请参考以下文章
jquery easyui datagrid 在翻页以后仍能记录被选中的行及刷新设置选中行数据