Multiple Select Form Control with dual lists and buttons to move items from one to the other, with optional ordering of the selected items.
Cleaner UI for the standard Kentico Multiple Choice form control. This features a Dual List box, left containing remaining available items, and the right the selected items. Optional Ordering available (saves in Database as the order you place, ex: 1|3|2|5|4).
Note that if you wish to do a WHERE IN in a repeater to select these options, this alone will not display the options in order. You will need to do something similar to this in the Order By:
CHARINDEX('|'+CONVERT(varchar, ItemID)+'|', '|1|3|2|5|4|')