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
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
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} />