Kyslik / column-sortable

Package for handling column sorting in Laravel 5/6/7/8
MIT License
641 stars 105 forks source link

Issues in Laravel 7.30.4 #177

Closed heliomoreira closed 3 years ago

heliomoreira commented 3 years ago

I Implemented your package, but the sort has some weird behavior.

https://user-images.githubusercontent.com/5754523/113636234-105a8680-966a-11eb-8f29-4edbf03972bd.mp4

Thanks

Healyhatman commented 3 years ago

Are you using dataTables for that? Or is it loading correctly via ajax?

heliomoreira commented 3 years ago

Hi,

I found the problem (my fault).

I was been using the orderByDesc (laravel helper) for default order, but I need to use like this: $user->sortable(['name' => 'desc'])->paginate(10);