Post

jsTree 체크박스 이벤트

1. 공식 사이트

2. 체크박스 트리

checkbox-tree

1
2
3
4
5
6
7
8
$(function () {
    $("#plugins1").jstree({
        "checkbox" : {
            "keep_selected_style" : false
        },
        "plugins" : [ "checkbox" ]
    });
});

3. 체크박스 클릭 이벤트

1
2
3
4
$('#t').on('select_node.jstree Event', function (e, data) {
    var id = data.node.id;
    alert(id);
});

4. 체크박스 클릭 해제 이벤트

1
2
3
4
$('#tree').on('deselect_node.jstree Event', function (e, data) {
    var id = data.node.id;
    alert(id);
});
This post is licensed under CC BY 4.0 by the author.