Skip to content

removeMissed

defines how to treat items in case of reloading

let removeMissed: boolean
dgrid.config.removeMissed = true;
dgrid.load("updated.json");

The property specifies how to treat data items that were deleted from the data source but still exist on the client.

  • false - (default value) the items will be left on the client after reloading data.
  • true - the items will be removed from the client after reloading data.

Articles