hi,
i have in config_list.yaml
showSorting: true
defaultSort:
column: sort_order
direction: desc
this is not working so i have this in controller
public function listExtendQuery($query, $def = null)
{
$query->orderBy('sort_order', 'desc'); // enforce higher → lower
}
This works however when i tried to reorder the row by sortable trait then thesorting is reversed. like the 57 become 1 and so on.
there is no custom code that is interfering with this.
someone having the same issue or it is just me and if there is a possible solution.