Check documentation for the latest version of dhtmlxSuite remove DHTMLX Docs

remove

removes a data item from the dataview

void remove(string|number id);
idstring|numberthe item's id or an array of ids

Example

myDataView.remove("item1");
//or
myDataView.remove(["item1","item2", "item3"]);

See also
  • API
  • Back to top