import com.google.gwt.dom.client.Document;
import com.google.gwt.dom.client.Element;
import com.google.gwt.dom.client.NodeList;
.
.
.
NodeList<Element> elementList = Document.get().getElementsByTagName("input");This will give you a list of all HTML 'input' elements on the page, you can loop through them and check the type/id/value of the element for the ones you are interested in. On Fri, Jul 15, 2011 at 4:07 PM, Dennis Haupt <[email protected]> wrote: > hi community, /v > i'm in a gwt module that is part of a bigger page, and i need to know which > checkboxes that are on this page are selected. i know what the names of > these boxes are, but i don't know how many there are. > how can i a) get them all and b) find out which ones are checked from inside > my gwt entry point? > > -- > 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. > -- 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.
