Hi. I arranget items on grid by hand in the order i want them to be. Now i want to get this order as a formula, or get it programmably by some kind of api.
But api seems to return items from view always in the same order, no matter what changes in arrangement is made in view.
Is there any way to get current order of records in view?
Page 1 / 1
Hey you can use sort in the API for this - From the API Docs:
A list of sort objects that specifies how the records will be ordered. Each sort object must have a
field
key specifying the name of the field to sort on, and an optionaldirection
key that is either"asc"
or"desc"
. The default direction is"asc"
.
The
sort
parameter overrides the sorting of the view specified in theview
parameter. If neither thesort
nor theview
parameter is included, the order of records is arbitrary.
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.