Reputation: 51229
What is the best way to handle the moment when all widgets are first shown and finally sized in GWT? I need to handle only GWT part ready, not entire document ready...
Upvotes: 0
Views: 1298
Reputation: 17499
You can use either Scheduler.scheduleFinally or the Scheduler.scheduleEntry function. They are run at the end of the event loop.
Also check out the gogole documentation on delayed logic
Upvotes: 2