Notifies clients when an IListDataAdapter object's data changes.
Indicates the start of a notification batch. Objects that are listening for notifications should defer making updates until endNotifications is called.
Raises a notification that an item in the IListDataAdapter object's data source has changed.
The item that changed.
Indicates the end of a notification batch. When the beginNotifications method is called, objects listening for notifications should defer making updates until endNotifications is called.
Raises a notification that an item has been added to the IListDataAdapter object's data source.
The new item added to the IListDataAdapter object's data source.
The key of the item that now precedes the new item, or null if the item was inserted at the start of the list. If nextKey is provided, this parameter may be null.
The key of the item that now follows the new item, or null if the item was inserted at the end of the list. If previousKey is provided, this parameter may be null.
The index of the new item.
Indicates that all previous data obtained from the IListDataAdapter is invalid and should be refreshed.
A Promise that completes when the data has been completely refreshed and all change notifications have been sent.
Raises a notification that an item was moved within the IListDataAdapter object's data source.
The item that was moved.
The key of the item that now precedes the new item, or null if the item was moved to the beginning of the list. If nextKey is provided, this parameter may be null.
The key of the item that now follows the new item, or null if the item was moved to the end of the list. If previousKey is provided, this parameter may be null.
The item's original index.
The item's new index.
Reloads data from the IListDataAdapter.
Raises a notification that an item was removed from the IListDataAdapter object's data source.
The key of the item that was removed.
The index of the item that was removed.