Hi Kris,
I was looking more at the sample program you suggested
(ContactDatabase.java), and I saw this method:
/**
* Add a display to the database. The current range of interest of
the display
* will be populated with data.
*
* @param display a {@Link HasData}.
*/
public void addDataDisplay(HasData<ContactInfo> display) {
dataProvider.addDataDisplay(display);
}
Now, when I load up my query results, I have way more data than can
fit in the current view (i.e. the number of visible rows of data).
Do I have to somehow adjust my viewable row count for the DataGrid
before loading my query results so I could eventually see them?