I'm trying to use FloatingPanes with a BorderContainer, but the floating panes do not
float correctly.
Depending on which node they are attached to, they either never appear, or appear but are not
movable correctly.
I've put a test up showing this at http://jetty.mortbay.org/dojo/test.html
This is with dojo 1.1.0 and FF
Any help debugging this, or pointers as to where I'm going wrong... gladly received.
cheers

Oh, I found out a bit of
Oh, I found out a bit of what I'm doing wrong with the body floaters....
they are appearing... just off the bottom of the screen. The following mantra
puts them on the page where they work OK:
pane.startup(); pane.resize({ w:300, h:125 }); dojo.style(pane.domNode,"top",((count%10+1)*5)+"%"); dojo.style(pane.domNode,"left",(count%8*5)+"%"); pane.show(); pane.bringToTop(); count++;--
Greg Wilkins