Open MitchellVermaning opened 4 years ago
Hello,
Thank you for this great library.
I added to a new form control the attribute multiple on the HTML element select (form/select.js). When I set two options to selected, only the last selected option will be highlighted.
multiple
select
selected
--
HTML preview:
HTML rendered the following code:
To reproduce this problem:
multiple: true
attrs
[ { label: "test1", value: "test1", selected: true }, { label: "test2", value: "test2", selected: true }, { label: "test3", value: "test3", } ]
Do you have any idea how I can resolve this problem? Thank you!
Hello,
Thank you for this great library.
I added to a new form control the attribute
multiple
on the HTML elementselect
(form/select.js). When I set two options toselected
, only the last selected option will be highlighted.--
HTML preview:
HTML rendered the following code:
--
To reproduce this problem:
multiple: true
toattrs
. Like:Do you have any idea how I can resolve this problem? Thank you!