我想将jsTree与复选框一起使用,但它不起作用。
我的代码:
$("#tree").jstree({
"json_data" : {
"data" : data
},
checkbox: true,
checkboxName: 'checkbox1[]',
"plugins" : [ "themes", "json_data", "ui", "checkbox", "types" ]
});
树看起来不错并且有效,但我没有选中项目的复选框。
有人可以帮忙吗?
答案 0 :(得分:0)
这可能会对你有所帮助。 :)
$("#tree").jstree({
"plugins" : ["themes","json_data","ui","checkbox", "types"],
"json_data":{
data : data
},
"checkbox": {
two_state: true
}});