Serves as the base class for a custom IListDataSource.
Initializes the VirtualizedDataSource base class of a custom data source.
The object that supplies data to the VirtualizedDataSource.
An object that can contain properties that specify additional options for the VirtualizedDataSource. It supports these properties: cacheSize.
Registers an event handler for the specified event.
The name of the event to handle. See the VirtualizedDataSource object page for a list of events. Note that you drop the "on" when specifying the event name for the addEventListener method. For example, instead of specifying "onstatuschanged", you specify "statuschanged".
The event handler function to associate with the event.
Set to true to register the event handler for the capturing phase; otherwise, set to false to register the event handler for the bubbling phase.
Raises an event of the specified type and with additional properties.
The type (name) of the event.
The set of additional properties to be attached to the event object when the event is raised.
boolean
true if preventDefault was called on the event, otherwise false.
Removes an event handler that the addEventListener method registered.
The name of the event that the event handler is registered for. See the VirtualizedDataSource object page for a list of events.
The event handler function to remove.
Set to true to remove the capturing phase event handler; set to false to remove the bubbling phase event handler.
Occurs when the status of the VirtualizedDataSource changes.
An object that contains information about the event. The detail property of this object contains the following sub-properties: status.