Skip to main content
1-Visitor
December 9, 2016
Solved

Ordering a List

  • December 9, 2016
  • 1 reply
  • 1612 views

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

Best answer by ttielebein

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!

1 reply

5-Regular Member
December 9, 2016

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!