Lazy loaded table - lite

Hi guys,

I just needed simple lazy loaded table for Vaadin 7. I took
https://vaadin.com/directory#addon/lazy-query-container
and I have adjusted that to the 7th version.

Example:
there is no difference to original plugin, just use this tutorial
https://vaadin.com/wiki/-/wiki/Main/Lazy%20Query%20Container

Maven:

<repositories>
    <repository>
      <id>qiiiip</id>
      <url>http://qiiip.org/mavenRepo</url>
    </repository>
</repositories>
<dependency>
      <groupId>org.vaadin.addons</groupId>
      <artifactId>lazy-container-lite</artifactId>
      <version>2.0.1</version>
 </dependency>

Grails:

mavenRepo "http://qiiip.org/mavenRepo"
compile 'org.vaadin.addons:lazy-container-lite:2.0.1'

Source codes are here:

https://github.com/ondrej-kvasnovsky/vaadin-lazyquerycontainer

Just an update:
I have decided to build new lazy container:
https://github.com/ondrej-kvasnovsky/lazy-container

Here is an example of usage
https://github.com/ondrej-kvasnovsky/lazy-loaded-paged-table

Thanks Ondrej. After searching a lot about this topic I find your solution to be the simplest and it worked great!