Done loads of foogling.
Basically I've got a multi-select select box.
<select id="mySelect" multiple="multiple">
<option>Here</option>
<option>There</option>
<option>Everywhere</option>
<option>AndyW</option>
</select>
I'm trying to find a way to render it as a regular dropdown, but retaining the ctrl + shift multiple select functionality.
There's a zillion jquery solutions, but they all seem to add checkboxes to select multiple values - my users want to be able to select a range with the shift key, as well as individual non sequential values (like the standard component) but want it to look like a dropdown.
Has anyone come across something that will do this?
Basically I've got a multi-select select box.
<select id="mySelect" multiple="multiple">
<option>Here</option>
<option>There</option>
<option>Everywhere</option>
<option>AndyW</option>
</select>
I'm trying to find a way to render it as a regular dropdown, but retaining the ctrl + shift multiple select functionality.
There's a zillion jquery solutions, but they all seem to add checkboxes to select multiple values - my users want to be able to select a range with the shift key, as well as individual non sequential values (like the standard component) but want it to look like a dropdown.
Has anyone come across something that will do this?

Comment