bootstrap-select
                                
                                 bootstrap-select copied to clipboard
                                
                                    bootstrap-select copied to clipboard
                            
                            
                            
                        Keep selection order
I find that bootstrap-select returns selected items (multiple selection) in alphabetical order regardless of the actual order of selection. Is it possible to keep the order of selection?
Any solutions?
This does work for me
const picker = $('#mySelect');
picker.on('loaded.bs.select', selectedFirst);
picker.on('change.bs.select', selectedFirst);
function selectedFirst () {
  $(this).find('option:selected').prependTo(this);
  $(this).selectpicker('refresh');
}
@stebogit Hi! How is it possible to implement such solution? I'm attempting to change the behaviour of shinywidgets::pickerInput.