davidstutz / bootstrap-multiselect

JQuery multiselect plugin based on Twitter Bootstrap.
https://davidstutz.github.io/bootstrap-multiselect/
Other
3.66k stars 1.99k forks source link

How to show value instead of options text in the button for selected options? #1244

Open markusd1984 opened 1 year ago

markusd1984 commented 1 year ago

Is there a configuration option or can we use template button to show value of options instead of options text for selected options?

UPDATE: I found buttonText with reference to " names of the selected options if less than numberDisplayed options are selected."

Managed to make it work by using the below

 labels.push($(this).attr('value'));

instead of

labels.push($(this).html());