Google News
logo
Java GWT - Interview Questions
What is AsyncDataProvider in GWT cell widgets?
AsyncDataProvider ties your cell widgets to an asynchronous data source. The AsyncDataProvider used to fetch the new data when the cell widget requires new data and then push it to the widget. To request the new data, implement the oRangeChanged() method for the specified cell widget. To push the data, call updateRowCount() and/or updateRowData() methods.
Advertisement