execAsync
method on the dataset. This is the same method that is available on the DataSource class.execAsync
method does return a data promise but it does not add the promise to the internal stack of promises that receive updates when data changes. This is a one-time request much like the behavior of the same method on the data source.execAsyncListen
. This method will return a new data promise and add it to the update stack. done
callback is named a table for this reason. This can be turned off using an optional configuration setting passed into any of the data set methods. cast
option on the configuration parameter.refresh
method to force a dataset to go back to the data service for new data and then update its promises letting consumers know about the change. This method does not return a new promise.done
callback of a data promise. In addition, the data is also stored inside the dataset and can be accessed anytime via the data
method on the dataset.table
is defined in the WireBootstrap typings file as returning an IDataTable
object for auto-casting into a DataTable in TypeScript. This is helpful if the default data table casting behavior is not turned off.