select

selects the specified items (moves them to the right list) or unselects them

void select(string|array id,boolean mode);
idstring|arraythe id (ids) of the items to select
modebooleantrue - 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
  • Articles
  • 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.
    If you have not checked yet, be sure to visit site of our main product Webix javascript web framework and page of object list javascript product.