Searches for items by their GUIDs and moves them to the selection pool.
An array of item GUIDs to be moved.
var multiselect = ix.api.dom.getControl("<ELEMENT-GUID>");
multiselect.loadItemsByGuid(["<ITEM-GUID>", "<ITEM-GUID>"]);
Moves all items from the search pool to the selection pool, irrespective of their selection status.
Optional
triggerOnchange: booleanWhether to trigger the onchange
event.
var multiselect = ix.api.dom.getControl("<ELEMENT-GUID>");
multiselect.moveAllToSelected(false);
Moves only the selected items from the search pool to the selection pool.
Optional
triggerOnchange: booleanWhether to trigger the onchange
event.
var multiselect = ix.api.dom.getControl("<ELEMENT-GUID>");
multiselect.moveToSelected(false);
Moves all items from the selection pool back to the search pool, irrespective of their selection status.
Optional
triggerOnchange: booleanWhether to trigger the onchange
event.
triggerOnchange = true
var multiselect = ix.api.dom.getControl("<ELEMENT-GUID>");
multiselect.removeAllFromSelected(false);
Moves the selected items from the selection pool back to the search pool.
Optional
triggerOnchange: booleanWhether to trigger the onchange
event.
var multiselect = ix.api.dom.getControl("<ELEMENT-GUID>");
multiselect.removeFromSelected(false);
Searches for specific items by their GUIDs and adds them to the selection pool, with an option to replace or append.
Item list with their guids.
Optional
modus: "append" | "replace"replace
or append
items in selected list.
var multiselect = ix.api.dom.getControl("<ELEMENT-GUID>");
multiselect.selectItemsByGuid(["<ITEM-GUID>", "<ITEM-GUID>"]);
Simultaneous selection of multiple entries within two list elements. Entries are organized into selectable and selected lists, with intuitive functionality for moving entries between the two lists.