Добоый день, подскажите как сделать так чтобы все ветки изначально были открыты. Пытался писать state:opened но не выходит
$('#jsproto-ajax').jstree({
"core": {
"themes": {"responsive": false},
"check_callback": true,
'data': {
'url': function (node) {
return (node.id === '#') ? ('/ajax/getProtoDictNew') : ('/ajax/getProtoDictNew/' + node.id);
},
'data': function (node) {
return '';
},
"dataType": "json"
}
},
"types": {
'default': {
'icon': 'assets/img/protocol.png'
}
},
"plugins": ["dnd", "state", "types", "checkbox"]
});