marks an item as updated
rowId | string|number | the id of a row to set the update status for |
mode | boolean | optional, true (default) for "updated", false for "not updated" |
state | string | optional, the update mode name, "updated" by default |
dp.setUpdated(1);
dp.setUpdated(2, true, "deleted");
Back to top