Way to make DisclosurePanel or other widgets to overlap on top of others

2009-12-08 Thread shiang
Hi, i am a beginner on GWT.
I would like to seek for advice on making widget to overlap on top of
the rest of panels in the following condition:

1) There is a DockLayoutPanel with north, south, east, west, center
panels.
2) there is a DisclosurePanel on the border of north panel

I want to make the DisclosurePanel to display fully on top of the
north and center panel when it is click.
(Example: the listbox can display fully on top of both north and
center panels, however, DisclosurePanel can only display within its
parent area thus it cannot display fully.)
It looks like ListBox is having higher precedence of rendering.

Any ideas on what can be done to achieve the overlap?

Thank you!

--

You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Way to make DisclosurePanel or other widgets to overlap on top of others

2009-12-08 Thread Mohamed Mansour
In CSS, the z-index property specifies the stack order of an element.
So it depends on how you style it.

On Dec 8, 10:00 pm, shiang sfk...@gmail.com wrote:
 Hi, i am a beginner on GWT.
 I would like to seek for advice on making widget to overlap on top of
 the rest of panels in the following condition:

 1) There is a DockLayoutPanel with north, south, east, west, center
 panels.
 2) there is a DisclosurePanel on the border of north panel

 I want to make the DisclosurePanel to display fully on top of the
 north and center panel when it is click.
 (Example: the listbox can display fully on top of both north and
 center panels, however, DisclosurePanel can only display within its
 parent area thus it cannot display fully.)
 It looks like ListBox is having higher precedence of rendering.

 Any ideas on what can be done to achieve the overlap?

 Thank you!

--

You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Re: Way to make DisclosurePanel or other widgets to overlap on top of others

2009-12-08 Thread shiang
Thanks a lot for the information :)



On Dec 9, 12:20 pm, Mohamed Mansour m0.interact...@gmail.com wrote:
 In CSS, the z-index property specifies the stack order of an element.
 So it depends on how you style it.

 On Dec 8, 10:00 pm, shiang sfk...@gmail.com wrote:



  Hi, i am a beginner on GWT.
  I would like to seek for advice on making widget to overlap on top of
  the rest of panels in the following condition:

  1) There is a DockLayoutPanel with north, south, east, west, center
  panels.
  2) there is a DisclosurePanel on the border of north panel

  I want to make the DisclosurePanel to display fully on top of the
  north and center panel when it is click.
  (Example: the listbox can display fully on top of both north and
  center panels, however, DisclosurePanel can only display within its
  parent area thus it cannot display fully.)
  It looks like ListBox is having higher precedence of rendering.

  Any ideas on what can be done to achieve the overlap?

  Thank you!

--

You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.