Re: How to mask page when show a dialog box ?

2009-03-23 Thread lukehashj
I did something like this: SimplePanel modalDiv = new SimplePanel(new HTML(nbsp;)); modalDiv.setStyleName(modalDiv); modalDiv.setWidth(100%); modalDiv.setHeight(100%); RootPanel.get().add(modalDiv); DOM.setStyleAttribute(modalDiv.getElement(), position, absolute);

Re: How to mask page when show a dialog box ?

2009-03-23 Thread lukehashj
Forgot to include background-color:black in the css. On Mar 23, 5:03 pm, lukehashj bobwazn...@gmail.com wrote: I did something like this: SimplePanel modalDiv = new SimplePanel(new HTML(nbsp;)); modalDiv.setStyleName(modalDiv); modalDiv.setWidth(100%); modalDiv.setHeight(100%);

How to mask page when show a dialog box ?

2009-03-18 Thread Saeed Zarinfam
Hi I want to mask page element when i show a dialog box over the page (like google reader message box). please guide me. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this

Re: How to mask page when show a dialog box ?

2009-03-18 Thread Thomas Broyer
On 18 mar, 07:34, Saeed Zarinfam zarinfa...@gmail.com wrote: Hi I want to mask page element when i show a dialog box over the page (like google reader message box). please guide me. http://collectionofdemos.appspot.com/javadoc/com/google/gwt/widgetideas/client/GlassPanel.html from the