How to update jstree node values without reload
问题 I have a jstree that I created with the following code: $('#mytree').jstree({"core": { "data" : value , "themes" : { "dots": false , "icons": false } } } ); I can rebuild it with new data by this code: $('#mytree').jstree(true).settings.core.data = new_data; $('#mytree').jstree(true).refresh(); but it can be expensive when you have a lot of nodes. What I would like to achieve is that I would like update the value of the elements (i.e. the node.text part) without rebuilding the whole tree. I