Re: setVisible(false) resp. UiBinder directive visible="false" == CSS directive display: none;?

2010-03-09 Thread Chris Lercher
Hi, the default implementation of setVisible() in the abstract UiObject class does just that: It sets elem.style.display = visible ? '' : 'none'; But the setVisible() method is overridden by some classes, in GWT 2.0.3 these are the classes PopupPanel and LazyPanel. PopupPanel currently sets visi

setVisible(false) resp. UiBinder directive visible="false" == CSS directive display: none;?

2010-03-09 Thread Alexander Orlov
Is the setVisible(false) method of a widget or the UiBinder equivalent visible="false" a shortcut for the CSS directive display: none;? Or is setting the visible property to FALSE the equivalent to "not loading the widget" at all? -- You received this message because you are subscribed to the Goo