select
selects the specified items (moves them to the right list) or unselects them
void select(string|array id,boolean mode);
string|array | the id (ids) of the items to select | | mode |
boolean | true - to select items, false - to unselect them |
Example
// selects items with ids 3,4
$$("dbl1").select([3,4],true);
// unselects items with ids 3,4
$$("dbl1").select([3,4],false);
Related samples
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support,
connect with other developers, and share your feedback there.