This is a basic checkbox plugin demo.
01.
$(
function
() {
02.
$(
"#demo_1"
).tree({
03.
ui : {
04.
theme_name :
"checkbox"
05.
},
06.
plugins : {
07.
checkbox : { }
08.
}
09.
});
10.
});
01.
$(
function
() {
02.
$(
"#demo_2"
).tree({
03.
ui : {
04.
theme_name :
"checkbox"
05.
},
06.
plugins : {
07.
checkbox : { three_state :
false
}
08.
}
09.
});
10.
});