bootstrap-fullscreen-select icon indicating copy to clipboard operation
bootstrap-fullscreen-select copied to clipboard

button text is updated with value instead of text

Open gabrielbratescu opened this issue 9 years ago • 1 comments

If I have a select like this: `

` the button element on the page is updated with the value, not the label. This is not normal, in standard

gabrielbratescu avatar Oct 27 '16 12:10 gabrielbratescu

This can be fixed by replacing line 290 with: this.$e.val(selectedOptions).attr("selected", true);

And if the text is really long you can put this in CSS:

button.btn-mobileSelect-gen span.text { float: left; width: auto; white-space: normal; }

gabrielbratescu avatar Oct 27 '16 12:10 gabrielbratescu