Help

Get order of custom arranged items in grid

Topic Labels: Base design
824 1
cancel
Showing results for 
Search instead for 
Did you mean: 
Jakub_Serafin
4 - Data Explorer
4 - Data Explorer

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?

1 Reply 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 optional direction key that is either "asc" or "desc" . The default direction is "asc" .

The sort parameter overrides the sorting of the view specified in the view parameter. If neither the sort nor the view parameter is included, the order of records is arbitrary.