wk中有一段编辑角色菜单的代码,但目前是无法显示当前角色选中了那些菜单
$(function () {
jsTreeMenu = $("#jsTreeMenu").jstree({
plugins: ["wholerow", "checkbox"],
core: {
data: ${menus!}
},
checkbox: {
three_state: false,
cascade: 'down'
}
}).on("hover_node.jstree", function (e, data) {
if (data.node.data)
$("#menuDescript").text(data.node.data);
}).on("dehover_node.jstree", function (e, data) {
$("#menuDescript").html("<div class='alert alert-info'>请勾选每一个需要分配的菜单</div>");//清空菜单描述
}).bind("loaded.jstree", function (e, data) {
//立即加载树下所有节点
});
});