How to update jstree node values without reload

前端 未结 6 2076
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-07 07:11

I have a jstree that I created with the following code:

$(\'#mytree\').jstree({\"core\": { \"data\" : value
                             , \"themes\" : { \"dots\         


        
6条回答
  •  灰色年华
    2021-02-07 07:56

    $('#mytree').jstree(true).refresh(); is working, but in my case it causes thread leak. every refresh adds one more thread

提交回复
热议问题