Questions tagged [asmselect]

A progressive enhancement to

asmSelect, a progressive enhancement to <select multiple> form elements. It provides a simpler alternative with the following advantages:

  • Easier for users to understand and interact with than regular <select multiple> form elements. Users know how to interact with it sans instruction.

  • Doesn't require user to Control-Click or Shift-Click multiple elements. Instead users of your form can add or remove elements individually, without risk of losing those that have already been selected.

  • Selected elements are always visible (within the confines of your interface) while unselected elements are always hidden (within a regular <select>).

  • Unlike regular <select multiple> option elements, those on asmSelect are optionally sortable with drag and drop (this part requires jQuery UI).

  • asmSelect hides, maintains and updates the original <select multiple> so that no changes are required to existing code.

  • If a user does not have JavaScript, then of course the regular <select multiple> form element is used instead.

  • If the original <select multiple> form element is modified by some other jQuery or JavaScript code, the change will be reflected in the asmSelect as well.

Resources

19 questions
4
votes
3 answers

jQuery toggle div from select option

I'm in need to toggle divs from a dropdown select option box. I'd like it similar to asmselect for jquery but instead of listing the option tag I'd like it to display a hidden div. Is there anything like this out there? Or anyone know how to set it…
Jeffrey
  • 4,098
  • 11
  • 42
  • 66
2
votes
3 answers

The jQuery plugin, asmSelect, doesn't retain sort order

So, I'm using the asmSelect plugin to create lists, but also trying to use it to edit existing lists. asmSelect allows you to manually sort/arrange the selected options before submitting. My problem is whenever I go and grab the user sorted list…
kafuchau
  • 5,573
  • 7
  • 33
  • 38
2
votes
2 answers

Remove initial selected item in jQuery ASM select

I am using the rather fantastic jQuery multiple select plugin, ASM select This plugin is so close to my needs I have to try and fix the one and only bug I can find. On initial load, the selector checks for any elements that have the attribute…
Tim
  • 3,091
  • 9
  • 48
  • 64
1
vote
2 answers

jquery asmselect: changes not firing on sort

I'm using the asmselect plugin to allow users to select & order multiple items from a select box. I only want to enable the submit button when the user has made a change. The following works, but change does not get called when sorting the selected…
chris
  • 36,094
  • 53
  • 157
  • 237
1
vote
1 answer

Set asmselect id while initiating

Is there any way to set id for asm select instead of having it initiated automatically? Thank you in advanced.