Move all options from left to right and vice versa.
Move selected options from left to right and vice versa.
Move selected options up/down any specified number of spaces. Options will move 1 space by default.
Bug found: Mozilla/Firefox/Netscape => Scroll position for the <SELECT> element returns to the top of the list on every call to the move up/down functions.
Move selected options to any specified position in current list.
Bug found: Mozilla/Firefox/Netscape => If a script requires more than 5 seconds to run, a message pops up asking the user if the script should be allowed to continue. This message cannot be suppressed. Depending on the number of spaces required to move an option to a specific index, this feature's method call can take longer than is allowed before this message pops up. I am working on a faster algorithm to account for this time limit.-- FIXED --
Move selected options from left to right and vice versa using "RETURN" key.
Select all options in specified list with one command.
Deselect all options in specified list with one command.
Sort specified list alphabetically with value attribute of <OPTION> set as: ID|Name.
Sort specified list numerically with value attribute of <OPTION> set as: ID|Name.
Retrieve value attributes of <OPTION>'s in the order that they appear in listbox. Useful for submitting full list to database.
Moving to a specific <OPTION> by keypress is already built in to the <SELECT> element but only to a minimal extent. I will continue to work on extending that functionality for our purposes.