z-song / demo.laravel-admin.org

Source code of official http://demo.laravel-admin.org website.
507 stars 250 forks source link

How to filter with select which have more 60000 options #48

Closed thatoe closed 5 years ago

thatoe commented 5 years ago

I need to filter with more than 60000 options select. There have only two ways to filter with select by documentation.

`$filter->equal('column')->select(['key' => 'value'...]);

// Or from the api to obtain data, api format reference model-form select component $filter->equal('column')->select('api/users');`

Both ways can't load 60000 options .