How do I do multiple selects from dropdown either using JavaScript and
-
Using JQuery or JavaScript, how do I do multiple selects on dropdown so, I can see multiple results in the page?
-
Using JQuery or JavaScript, how do I do multiple selects on dropdown so, I can see multiple results in the page?
You can't select more than one item in a dropdown, you'll need to use a jquery select plug-in that allows for multiple things to be selected.
-
You can't select more than one item in a dropdown, you'll need to use a jquery select plug-in that allows for multiple things to be selected.
F-ES Sitecore wrote:
You can't select more than one item in a dropdown
Assuming your dropdown is an HTML , you can use ideally with a
size=_n_
attribute (I know that makes it an open list, but it is far more convenient than a single entry dropdown list). Thereafter, any JS book / online tutorial will tell you how to mark selected entries (clue: ignoreselectedIndex
) -
F-ES Sitecore wrote:
You can't select more than one item in a dropdown
Assuming your dropdown is an HTML , you can use ideally with a
size=_n_
attribute (I know that makes it an open list, but it is far more convenient than a single entry dropdown list). Thereafter, any JS book / online tutorial will tell you how to mark selected entries (clue: ignoreselectedIndex
)That makes it a listbox and not a dropdown.