0

I have a custom field for user status but I want to disable the default sorting on that column.

like when we use predefined fields like

Three Doc
  • 43
  • 4

1 Answers1

1

It is possible to disable sorting for a specific field by passing a sortable property set to false: https://marmelab.com/react-admin/List.html#disabling-sorting

<TextField source="id" sortable={false} />

MaxAlex
  • 2,919
  • 1
  • 14
  • 14