GWT - Update Widget when java.util.List changes

2011-01-17 Thread Vrto
Hello, I am new here and I came to seek for advices from more experienced GWT programmers. Here is my problem: I am making AsyncCalls and they fill some collections (java.util.List) with data. These callbacks take quite a time, so by the time collections are filled, UI is fully loaded. However,

Re: GWT - Update Widget when java.util.List changes

2011-01-17 Thread Y2i
Did you have a chance to go through this tutorial? http://code.google.com/webtoolkit/doc/latest/tutorial/gettingstarted.html When you get the data, you need to populate the widgets as shown here: http://code.google.com/webtoolkit/doc/latest/tutorial/RPC.html#invoke -- You received this message

Re: GWT - Update Widget when java.util.List changes

2011-01-17 Thread Vrto
Hello, yes. I quite misunderstood basic principles, I asked on Stackoverflow and issue was fairly easy. Issure resolved here: http://stackoverflow.com/questions/4708486/gwt-update-widget-when-java-util-list-changes On Jan 17, 9:22 pm, Y2i yur...@gmail.com wrote: Did you have a chance to go