前端:jsTree实例

//初始化树,并注册点击事件
$("#FlatTree").jstree({
    "core" : {
        "data":{
            "url":function(node){
                return getRootPath() + "/data/standard/standard.do?method=GetTree";
            },
            "dataType": "json",
            "data": function (node) {
                return { 'id' : node.id};
            }
        }
    },
    "types" : {
        "default" : {
            "icon" : "fa fa-folder icon-state-warning icon-lg"
         },
        "file" : {
            "icon" : "fa fa-file icon-state-warning icon-lg"
        }
    },
    'plugins' : ['types','contextmenu']
})
.on("select_node.jstree", function(node,data) {
    // 此id为表格中ajax参数data中要传入后台的数据,需要在DataTable中写入
    id = data.instance.get_node(data.selected[0]).id;  
    table.ajax.reload();
});
posted @ 2019-01-11 10:34  xuejianbest  阅读(401)  评论(0编辑  收藏  举报