Skip to main content

I can get records sorted by some field like below

  const records = useRecords(table, {
    sorts: [{ direction: 'desc', field: actionField }],
  });

but how can I get records sorted by manual order?

What do you mean by manual order? You can adopt the sorting of a particular view by pulling records from there as opposed to a table. Otherwise its going to be records.sort((a,b) => {insert your sorting logic here})


What do you mean by manual order? You can adopt the sorting of a particular view by pulling records from there as opposed to a table. Otherwise its going to be records.sort((a,b) => {insert your sorting logic here})


You can adopt the sorting of a particular view by pulling records from there as opposed to a table

That’s the solution.Thanks a lot!