Skip to content

Commit

Permalink
Merge pull request #45 from DHTMLX/next
Browse files Browse the repository at this point in the history
[update] add the "load" status value to the change event page of data collection
  • Loading branch information
mafanya23 authored Aug 27, 2024
2 parents fe3819d + c4af77c commit df41424
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api/data_collection/change_event.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ description: You can learn about the change event of data collection in the docu
~~~jsx
change: (
id?: string,
status?: "add" | "update" | "delete",
status?: "add" | "update" | "delete" | "load"
updatedItem?: object
) => void;
~~~
Expand All @@ -25,7 +25,7 @@ change: (
The callback of the event takes the following parameters:

- `id` - (optional) the id of the changed item
- `status` - (optional) the status of the change: "add", "update", "delete"
- `status` - (optional) the status of the change: "add", "update", "delete", "load"
- `updatedItem` - (optional) the object of the changed item

:::info
Expand Down

0 comments on commit df41424

Please sign in to comment.