Vaadin grid - filtering with lazy loading
问题 I have vaadin grid, and it's great that it has lazy data loading from the box. But for some reasons I have custom filters, which I use via CallbackDataProvider<> dataProvider.fetch(Query query) Query object has parameters for loading by portions ( offset and limit ), so I need to set it dynamically (?) and somehow listen grid scrolling event to load next part of data when user scrolls down (?) Grid.dataComunicator has field Range pushRows but there no public methods to get it. And all i have