Hi!
First i'd like to give my thanks to Steven and everyone helping out with this fantastic framework! I've been using Gaia for some time now
and i love it!
There is one thing i've been wondering though. Is there any way to get an ordered list of children for a given page?
I know i can access a page it's children using the
.children property, wich returns an object containing all the children.
But when looping trough an object, it doesnt care for the order they where added.
So basicly if my xml (simplified) would look like this:
<nav>
<page id="p1" />
<page id="p2" />
<page id="p3" />
</nav>Then when i ask for nav's children, i would like something like [p1,p2,p3] returned.
Is there any way to do this?
