Figured out the why, now just need to implement a solution... Three schools of thought on resolution.
Issue is that the keys of the objects are numeric not text...
One solution is to incorporate a character into the keys and all references calling each object (stk, stk2, etc).
Second is to use an array that maintains the order.
Third is to basically create a storage class that offers operations to access the data and maintains the order...
The third appears to offer the most operational freedom but also the most javascript to the visitor. The first is probably easiest to implement but browsers may eventually sort on text keys as well resulting in the same result as seen above...
Bookmarks