Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

selectize drop down to be on first item while typing

I'm loading drop-down options remotely, everything works fine except after some typing and deleting text, the drop-down scroller comes to the middle of scroll bar, and not the first option
enter image description here
how can i force the drop down to always be at the first option after remote call?

like image 517
osyan Avatar asked Dec 10 '25 02:12

osyan


1 Answers

Solved it by adding scroll in success part of ajax request as below

success: function (res) {

    callback(res.results);

    $('.selectize-dropdown-content').animate({ scrollTop: (0) }, 'slow');

},
like image 87
osyan Avatar answered Dec 11 '25 14:12

osyan