Hi,
I've been working with AsyncDataProvider for celltable, and the implementation is fantastic! Yet I've a few concerns:
Use existing data:
Each time the range change event is fired,
has to be called. If on navigating back, I decide to use the already fetched data, we need a method which basically does nothing! Such that we could only the visibleRange changes.
On update:
On fetching new data from the server, we need a method to addItems to the existing list. A method like
addRowData(int index, java.util.List<T> values)
which can add rows to the existing list, rather than replacing them will be wonderful!!
Thanks in advance,