当您扩展带有子孩子的子节点时,该子孩子正在清理,但是当您折叠并再次展开时,数据将再次显示。如何预防呢?我想在每次扩展时将数据保留在每个子节点中。有关更多详细信息,请参见截屏。谢谢您的帮助
https://www.screencast.com/t/UrqpGijg
这是我的jstree初始化代码
var treeView = _$treeviewList.jstree({
"core" : {
"themes" : {
"responsive": false
},
// so that create works
"check_callback" : true,
'data' : {
'url' : function (node) {
return '/api/services/app/QualificationSetup/GetData';
},
'data' : function (node) {
return { 'parent' : node.id, "table": node.icon };
}
}
}
});