This demo with 2 list boxes and the transfer buttons is the exact use case that I have. I'm trying to make it less work for the users since there will be several employees to select. I would like to avoid having to click the transfer button after clicking each employee or having to remember to control click to select more than one.
I tried to use a template to make the items checkboxes, but the checkboxes were rendered as text fields.
I also tried defining the change event to click on the transferTo link whenever an item is selected.
$('a[data-command="transferTo"]').click();
When an item is clicked, ALL of the list items are transferred instead of the one that was clicked.
Is there any way to do either of the following?
1. Make the list items checkboxes. Clicking the transfer button will transfer all of the checked items.
2. Transfer an item to the other listbox when it is clicked.
If not I think I will use plain HTML select elements.
Thanks