add

adds a new item to the tree

string add(object obj, [number index,string parentId] );
obj
objectthe item object index
numberoptional, the position that the item will be added to (zero-based numbering) parentId
stringoptional, the parent id
stringID of the newly added item

Example

//inserts a new item into the branch with id='root'
tree.data.add({id:"item10", value:"NewItem"}, 0, "root" );

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 framework and page of javascript tree view product.