Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Is there any way to order a list of things? I have all of these items that the list could be sorted by, but I cannot find a way to sort it in any manner.
Thanks,
Toby
Solved! Go to Solution.
There is a snippet for this called "Sort":
var sort = new Object();
sort.name = yourFieldName;
sort.ascending = booleanValue;
yourInfoTable.Sort(sort);
I hope this helps!
There is a snippet for this called "Sort":
var sort = new Object();
sort.name = yourFieldName;
sort.ascending = booleanValue;
yourInfoTable.Sort(sort);
I hope this helps!