DHTMLX Docs & Samples Explorer

Data manipulation

Adding

    view.add({
         id:"some id",
         property:"some value"
    })

If “id” not defined - it will be autogenerated.

Deleting

    view.remove("some id");
//or
    view.remove(["idA","idB","idC","idD"]);