HI all,
1. I hav a table which has node which has recursive node that means its like tree table. i can display all the data in tree everything is fine. But if i check the my node size it is not increasing. that mean its displaying size as 1. remember the data is added to the node during on load child that is sublevel. the issue is i could't able to recollect the entire data from node since its size is 1.
newDElement = node.createDElement();
node.addElement(newDElement);
newDElement.setEmpid(1);
.........etc.,
i used the above code to add the element. but it is not adding but it is displaying in table. but node its not added and its size is always 1.
2. the other issue is i want to map all values of table which are visible. example
if table has 100 rows and visible row count is 15 and currently table is displaying rows 15-30 as current table view values i want these values to be added to another node. that is current visible rows. how to do it.
awaiting for your replies,
regards,
Ganesh.D