May it be possible to implement filters that are populated via AJAX, as documented for Select2, so that large amounts of data can be used, but without negatively affecting the user experience?
I have some working on editing small forms, and I think this way would be good for certain cases where some filters could have a lot of data but its populated on demand when needed.
I can share this with you, or colaborate with your repo to add this support if you are interested.
I do it this way to have an initial support outside laravel livewire tables, and seems to be responsiveness. But not in laravel liverwire tables, an looking for a possible existing filter found your repo, and I think that could be a good extra for your advanced filters. But maybe not implement as I'm sharing with you to can have any usable samples.
The default selected items, are auto-loaded with an AJAX call by ID.
The others items are loaded with a preview of APP_PAGINATION items, and you can write to get other items, and scroll down to load more pages.
This is not an issue of an error.
May it be possible to implement filters that are populated via AJAX, as documented for Select2, so that large amounts of data can be used, but without negatively affecting the user experience?
I have some working on editing small forms, and I think this way would be good for certain cases where some filters could have a lot of data but its populated on demand when needed.
I can share this with you, or colaborate with your repo to add this support if you are interested.
I do it this way to have an initial support outside laravel livewire tables, and seems to be responsiveness. But not in laravel liverwire tables, an looking for a possible existing filter found your repo, and I think that could be a good extra for your advanced filters. But maybe not implement as I'm sharing with you to can have any usable samples.
For example:
Admin Controller: app/Http/Controllers/Admin/UserController.php
Select component: resources/views/components/form/select.blade.php
@once @push('css')
@endonce
@push('js')
@endpush