categories.js revision 03867ea80532b002c410ab75cfb0d1a0a6ec2632
$(function () {
$(".selector").jstree({
"plugins" : [ "search", "themes", "html_data", "checkbox", "sort", "ui" ],
"checkbox": {
real_checkboxes: true,
two_state: true
},
"themes": {
theme: "classic",
icons: false
}
});
});
$(function () {
$("#tree").jstree({
"plugins" : [ "themes", "html_data", "sort", "ui" ],
"themes": {
theme: "classic",
icons: false,
dots: false
}
});
});
});