easy ui 级联的问题

发布于 2021-11-24 03:57:25 字数 2068 浏览 668 评论 1

有个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

画骨成沙 2021-11-24 20:36:42

wrwrqerqe

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文