Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vaadin - Lazy Query Container

I'm doing my project in Vaadin 7. I need to implement a Lazy Query Container for a Treetable. I will get data for the Treetable from a web service.

Could someone please show how to use a Lazy Query Container with a web service as my data source?

Please let me know the steps required to implement this or show sample code to get me started.

like image 696
Gugan Avatar asked May 08 '13 09:05

Gugan


1 Answers

There is good documentation for LQC here: https://vaadin.com/wiki/-/wiki/Main/Lazy%20Query%20Container

The examples in documentation are implementing MovieQuery using javax.persistence API, but it might be easier to use the simple MockQuery example as basis and replace the actual data fetching with webservice calls.

like image 152
eeq Avatar answered Sep 16 '22 21:09

eeq