hello,
I am having a tree on the left side of my page and a calender on the right side. And inside that calender when i try to edit the newly created event the window for edit opens with an option to link that event with more than one nodes. And for this i have displayed the tree.jsp within that edit window but the current state(linked node which is checked) from the left side tree has to be brought and displayed in the tree within the iframe inside the calender i.e the already checked events must remain checked within the tree in edit window. But i am not able to bring the check state of the nodes from the tree.jsp in the iframe inside the calender.jsp. The edit window is displayed through a javascript. So i actually need to bring the state of the node from one jsp to another jsp and then into the iframe which is displayed through a javascript. The screenshot of the required page is attached below.
Are both frames will be loaded from the same domain?
In such case instead of moving data through jsp, you can made cross-frame javascript calls
//get from parent
var checked = window.parent.frames["id of left frame here"].mytree.getAllChecked();