A family of Microsoft on-premises document management and storage systems.
Hi @sco gordo ,
You could use camel query in JSOM code to sort the list item by the column Display order, Below is my demo for you: 103255-orderitems.txt
var clientContext = new SP.ClientContext();
var oList = clientContext.get_web().get_lists().getByTitle('yourList');
var query = new SP.CamlQuery();
query.set_viewXml('<View><Query><OrderBy><FieldRef Name="Display_x0020_Order" /></OrderBy></Query></View>');
this.oListItems = oList.getItems(query);
clientContext.load(oListItems);
clientContext.executeQueryAsync(onsuccess, onfailed);
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.