This is the result:
This is what the page shows when the JSON sets childnode.state.selected
For example:
{"children":[],"id":37,"text":"应用显 示","orderid":1,"parent":36,"state":{"disabled":false,"opened":false,"selected":true},"type":2,"url":"application\\list.action"}
When this happens, the parent node will open. I want it closed.
When selected_parent_open
is set false it should solve the problem, but I set it and it still doesn't work.
var control = $('#' + treeName)
control.data('jstree', false);//清空数据,必须
// empty data
var isCheck = arguments[2] || false; //设置checkbox默认值为false
// set default checkbox value to false
if(isCheck) {
//复选框树的初始化
// initialize checkbox tree
$.getJSON(url,jsondata, function (data) {
control.jstree({
"ui":{selected_parent_open:false},
'plugins' : [ "checkbox" ], //出现选择框
// selection box
'checkbox': { cascade: "", three_state: true }, //不级联
// don't cascade
'core': {
'data': data,
"themes": {
"responsive": false
}
}
}).on('loaded.jstree',loadedfunction);
});
}
What should I do?
What I need is:
I have a container that is a certain width. I have two select elements rendering on the same line in this main div container. The first one is absolute positioned 40px left from the main div ...
I have a container that is a certain width. I have two select elements rendering on the same line in this main div container. The first one is absolute positioned 40px left from the main div ...
Is there any way in which I can spy on the bunyan log to ensure I print out what I expect? MyFile.js const bunyan = require('bunyan'); const log = bunyan.createLogger({name: 'FailureAuditService'}); ...
Is there any way in which I can spy on the bunyan log to ensure I print out what I expect? MyFile.js const bunyan = require('bunyan'); const log = bunyan.createLogger({name: 'FailureAuditService'}); ...
I have heard that JavaScript has a function called search() that can search for a string ( lets call it A ) in another string ( B ) and it will return the first position at which A was found in B. ...
I have heard that JavaScript has a function called search() that can search for a string ( lets call it A ) in another string ( B ) and it will return the first position at which A was found in B. ...
I have an an array with key-value pair, array columns are id and name. I want to sort this array by id. The id column value is of type string type but I want to sort them as numeric values. var ...
I have an an array with key-value pair, array columns are id and name. I want to sort this array by id. The id column value is of type string type but I want to sort them as numeric values. var ...