easy ui 级联的问题
有个treegrid的问题,我想做个级联选中,看了网上的方法,现在还差一个问题,就是我在bo中同时加入children和_parentId2个字段,页面就显示不出来?不同时加入getParent方法或者getChildren方法就没有值?
$('#table_data3').treegrid({
url:"${request.contextPath}/auth_list-"+id+".html",
animate:"true",
rownumbers: true,
fitColumns: true,
singleSelect : false,
idField: 'authCode',
treeField: 'authName',
columns:[[
{title:'菜单名称', field:'authName', align:'left', width:200},
{title:'是否设定权限',field:'authCode', width:100,formatter:function(value,row,index){
if(row.checked){
return '<input type="checkbox" value="'+ value +'" name="authCode" checked="checked"/>';
}else{
return '<input type="checkbox" value="'+ value +'" name="authCode" />';
}
}}
]],
onClickRow:function(rowData){
alert(rowData.authCode);
alert($('#table_data3').treegrid("getParent",rowData.authCode));
//级联选择
$(this).treegrid('cascadeCheck',{
id:rowData.authCode, //节点ID
deepCascade:true //深度级联
});
},
onLoadSuccess : function(row, data){
$('#table_data3').treegrid("collapseAll");
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wrwrqerqe