Documentation

remove

removes the specified item from datastore

void remove(id id);

Parameters

ididthe item id

See also

Example

$$("my_list").remove(1); //remove the item with ID=1
$$("my_list").remove($$("data").getSelectedId()); //removes selected item

Back to top