Hi,
I have the following setup:
I'm using angularjs.
I have a treeview in one page, and I keep the stats to this page in a session variable (a "Service", across all my pages).
Everything works fine, and the treeview loads fine.
The only problem is - how do I keep the selected nodes across all pages, and show them when relevant (i.e. when I get back to the page with the treeview)?
I can keep the data in the service, so it is availablein the following format:
{nodesItems: [{text: 'text1', id: 'id1', checked: 'true'}, ...]}
As I wrote above, the treeview appears, but how do I set the relevant nodes to be checked?