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
    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.