I need to export my nodes like this:
function recursive_simplify(node){
if(node.children){
for(var i =0;i
get_all_checked: function(obj)
{
obj = !obj || obj === -1 ? this.get_container() : this._get_node(obj);
return obj.find(".jstree-checked, .jstree-undetermined");
};
use :
var checkedNodes = $(this).jstree("get_all_checked");
Using 3.3.8 version of jsTree, to get all the undetermined nodes, get_undetermined
option is available.
Hence, you can use both get_selected
and get_undetermined
to fulfil your requirement.
For complete and working source code, you can refer https://everyething.com/Example-of-jsTree-to-get-all-checked-nodes