var multiselect = ix.util.getUp("<GUID>");
multiselect.max;
Sets the maximum allowed selected items of the control.
var multiselect = ix.util.getUp("<GUID>");
multiselect.max = 5;
Gets the minimum required selected items of the control.
var multiselect = ix.util.getUp("<GUID>");
multiselect.min;
Sets the minimum required selected items of the control.
var multiselect = ix.util.getUp("<GUID>");
multiselect.min = 5;
Gets the opened state of the control.
var multiselect = ix.util.getUp("<GUID>");
multiselect.opened;
Sets the opened state of the control.
var multiselect = ix.util.getUp("<GUID>");
multiselect.opened = <true|false>;
Gets the required state of the control.
var multiselect = ix.util.getUp("<GUID>");
multiselect.required;
Sets the required state of the control.
var multiselect = ix.util.getUp("<GUID>");
multiselect.required = <true|false>;
Selects all records by the given IDs.
Single ID or array of record IDs to select
Optional
settings: { Optional
strvar multiselect = ix.util.getUp("<GUID>");
// set single value
multiselect.setValue("<recordId>");
// set multiple values
multiselect.setValue(["<recordIdOne>", "<recordIdTwo>"]);
// replace selected value(s)
multiselect.setValue(["<recordIdOne>", "<recordIdTwo>"],{attr:{strModus:"replace"}});
Gets the maximum allowed selected items of the control.