Hello,
I have collapsable/expandable tree created in jQuery. After loading the tree:
$("#tree").treeview({
collapsed: true,
animated: "medium",
control: "#sidetreecontrol",
persist: "location"
});
I have expando data attribute on the nodes, for example:

I've written some code which appends new nodes to my existing ones, basically by creating new <ul><li> html elements. So after appending a new node, I have additional ul container, but without jQueryxxxxx... attribute:

While I'm able to expand and collapse nodes initialized on page loading, I'm not able to interact with the nodes I've added later, because they're not cached... ? I don't understand that and I don't know how to fix it to be able to collapse and expand nodes I've created after the tree is initialized.
Regards