Login Register

The popup view port for a FilteringSelect or Combobox position problem

I'm trying to experiment with including Dojo in an existing application.

I use a bunch of floats to get the user input areas to show up as the users have requested.
When trying out the dojo combox box, the drop down portion of the list items appear
in a strange place which is not directly under the select. It looks like the options are being
appended and shown at the bottom of the document.

I suspect maybe its the floats but not sure. Anyhow, are there rules and such on how and where
you can use a wigit that has these custom viewport like areas to get them to work?

Any help is greatly appreciated.

Here is a sample that shows the viewport not in the proper place



    Dojo Test
		
		
				dojo.require("dojo.parser");
				dojo.require("dijit.form.FilteringSelect");
			


	
		
Pick One
One Two Three
Pick Another
Four Five Six

So it seems the floats are messing up where the popup shows up.
How can I get the popups for the choices to go underneath when the select is in a float?

TIA