Check documentation for the latest version of dhtmlxSuite setUpdated DHTMLX Docs

setUpdated

marks an item as updated

void setUpdated(string|number rowId, [boolean mode,string state] );
rowIdstring|numberthe id of a row to set the update status for
modebooleanoptional, true (default) for "updated", false for "not updated"
statestringoptional, the update mode name, "updated" by default

Example

dp.setUpdated(1);
dp.setUpdated(2, true, "deleted");

Back to top