remove of TreeStore, Methods Webix Docs

StartAPI ReferenceMixinsTreeStoreMethods

removes the specified item/items from datastore

void remove(string|number|array id);

id

string|number|arraythe item id or an array of items' ids

Example

$$("my_list").remove(1); // removes the item with ID=1
$$("my_list").remove($$("data").getSelectedId()); // removes the selected item
 
$$("my_list").remove([1,3,5]); // removes multiple items

Related samples

See also

  • API

  • Articles

  • Back to top