I tried fetching the node from query builder it is returning nodes in random order. I want to fetch it in the same order as it is present in CRX/de or site admin is there any way to do that?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi
If you need to order, you have put the order by clause. Following will sort by node path(tree)
orderby = @jcr:path
can simply use navigational access (node.getNodes()) in case you want node order.
Thanks
Can you post the query and the result snapshot here
Hi
If you need to order, you have put the order by clause. Following will sort by node path(tree)
orderby = @jcr:path
can simply use navigational access (node.getNodes()) in case you want node order.
Thanks
Views
Likes
Replies