Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This has to be a pretty basic question but I cannot for the life of me find anything via Google or this site about how to do this and it's really frustrating because I've gone through the GWT tutorial.

I'm trying to convert a javascript project I have to GWT. Right now I am trying to convert "" to something GWT equivalent. I've looked at RootPanel and I can't see anything.

Obviously I'm missing something fundamental in GWT ?!

share|improve this question
1  
Are you looking for EntryPoint.onModuleLoad? it's not equivalent to body.onload, but there's no equivalent in GWT actually (onModuleLoad will be called between DOMContentLoad and soon after body.onload depending on the capabilities of the browser). – Thomas Broyer Apr 8 '11 at 23:29

1 Answer

up vote 7 down vote accepted

Most widgets and panels in GWT implements the HasAttachHandlers interface. Adding an AttachEvent.Handler to these widgets/panels is equivalent to defining a function to run onload.

An example:

FlowPanel mainPanel = new FlowPanel();
mainPanel.addAttachHandler(new AttachEvent.Handler() {

  @Override
  public void onAttachOrDetach(AttachEvent event) {
    // do something
  }
});
share|improve this answer
I'm a pretty big idiot; is there a way you can provide an example? After reading your response and pouring through the API as well as Google searching the best I've come up with (which is completely wrong according to the red underlines in Eclipse) is: mainPanel.addHandler(new LoadHandler(){public onload(LoadEvent event);}, DomEvent<EventHandler>.class); – Justin Apr 7 '11 at 12:07
UPDATE(I'm trying real hard to use stackoverflow.com/editing-help I promise) I think I may have it Can you tell me if this seems reasonable mainPanel.addHandler(new LoadHandler() { public void onLoad(final LoadEvent event) { } }, LoadEvent.getType()); – Justin Apr 7 '11 at 12:20
You would do something like this, assuming your mainPanel is a FlowPanel: FlowPanel mainPanel = new FlowPanel(); mainPanel.addAttachHandler(new AttachEvent.Handler() { @Override public void onAttachOrDetach(AttachEvent event) { // do something } }); – smallbec Apr 7 '11 at 20:12
Thanks, that did it. Guess the "attach" jargon didn't make sense at first. – Justin Apr 8 '11 at 2:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.