Dynamic pages in the wrong order

Using wix studio… beginner!
I have dynamic pages setup and mirror on site on
Item has 5 pages. I want to have the pages in order of the CMS. It works everywhere BUT for the dynamic pages. It starts with the last one on CMS and not the first. I even tried giving it a new column with “a, b, c, d, e” and using that to order the pages but still starts with the last one.
Can anyone help?

OPEN DATASET SETTINGS
ADD A SORT OPTION FROM A-Z or otherwise. :slight_smile:
Hope that helps.

Unfortunately that doesn’t help as the list names are not in alphabetical order.
what I discovered is that the mirror function is overridden when multiple items of a dynamic page is used and when the items each have their own page. These pages are created in alphabetical order of the url, which is controlled by the slug.
This is definitely a bug.

Try using following code after adding a number field with name and ID “order” and fill it with 1,2,3,4,…

import wixData from 'wix-data';

const datasetId = "#your dataset ID here";

$w.onReady(function () {
    wixData.query("Write the collection name here")
        .ascending("order")
        .find()
        .then(results => {
            if (results.items.length > 0) {
                let sortedItems = results.items;

                $w(datasetId).setItems(sortedItems);
            } else {
                console.log("No items found");
            }
        })
        .catch(err => {
            console.log("Error fetching data:", err);
        });
});

Yes, the right way if velo code was used to call the wixData Api is been used to call the collection