Closed Rewt0r closed 9 years ago
I can confirm the issue.
This affects one of my projects too, large lists take well over > 1s to materialize whereas the native control loads < 1s.
Confirm. Where the items count more then 2000 approx. the browser show "unresponsive script" alert.
When I loading options
programmatically I make:
if ( control.attr( 'data-toggle' ) === 'selectpicker' ) {
if ( control.find( 'option' ).size() < 1000 ) {
control.selectpicker( 'refresh' );
} else {
control.next( '.bootstrap-select' ).remove();
control.show();
}
}
and remove .bootstrap-select
element.
We're using just under 1000 options for City and County.
I've run into this issue recently. I have 2855+ items, which takes well over 3s to load... any chance this will be fixed?
Yes please fix asap, it's really very slow!
1.6.3 doubles the execution time in comparison with 1.6.2
Probably bootstrap-select
should render items on the fly, like indefinite select (what about 10K items?). Also suggest it can be use with typeahead/bloodhood (show prefetched items, other by type in the search box).
Just want to confirm, that to end of March it's still very slow on large number of items. Tried Selectize just to compare - no such issue, works pretty fast.
I am having select with about 4000 items, takes > 4s to render.
Can confirm. Runs superslow with many options. (1000 in my case).
Please try 1.7.0-rc2.
Just tried it and work much faster with, thx