dataset event

Previous Next

The dataset event occurs when data is received for one or more data sources.

If you refer to this event in the context of a specific data source, the action is triggered only when data for that data source is received:

$.udb(datasource).on("dataset", function(evt, options) { ... });

 

If you refer to this event in the context of the page itself, the action is triggered whenever data for any data source in the page is received:

$.udb.on("dataset", function(evt, options) { ... });

 

 

See Also

Data Source Events