On 15 fév, 08:45, Fabiano <[email protected]> wrote: > Hi to all, > I am currently integrating my GWT application inside a page (there are > graphical elements which are not instanziated by GWT). > I have already managed window's OnClose handlers and they are working > right but I have not found a GWT way to add an handler to get the > page window's onload. > I know that the EntryPoint has the OnModuleLoad() method and I have > red the documentation about but I have still few questions: > > 1)Is the EntryPoint's OnModuleLoad method called when the Module has > been > initialized or when the full page has been loaded? > > 2)IS there are way to catch the page Onload event by using > GWT( without usign JSNI and javascript native code)? > > 3)IN case you have already implemented a solution(both GWT or JSNI are > good) could you please share with me a code snipped?
onModuleLoad is called somewhere between DOMContentLoad and onload, depending on browsers. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
