On Feb 9, 10:37 am, "Juan M.M.M." <[email protected]> wrote: > Hi man! > > Thx for the reply but I can't set the visiblitiy with this method > Document.get().getElementById(...) . > > Can you tell me the exact sintax to acced to the setVisibility method > through Document clas?
Either getStyle.setDisplay(Display.NONE) to hide and getStyle().clearDisplay() to show; or UIObject.setVisible(elt, false) to hide (pass 'true' as the second argument to show). -- 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.
