Check documentation for the latest version of dhtmlxSuite remove DHTMLX Docs

remove

removes a data item from the list

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

Example

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

See also
  • API
  • Back to top