I have a HTML file that is linked to a Java class using the Google Web Toolkit.
Within the HTML I have defined several buttons and text fields using standard HTML.
I am trying to get those elements into the GWT class so that I can manipulate them.
Is there a way to use GWT to get those elements and put them into object?
For example, in the com.google.gwt.user.client.ui.Button class there is a constructor that can be passed an Element. I figured that is where I could pass in the Element after retrieving it via another method.