Documentation

remove

removes the specified item from datastore

void remove(id id);

Parameters

ididthe item id

See also

Example

tree.remove(tree.getSelectedId()); // removes selected
    tree.remove(1); //removes the item with id="1"

Back to top