How do you make the drodownlist show below the combobox? I have placed multiple combo-boxes on a page and when clicked on the arrows, the dropdownlists show anywhere on the page.
Thanks
Mahesh
Comments: After looking at the CSS of the misplaced items (UL, LI, etc), I inserted this CSS as an "override" and it solved the problem: .ajax__combobox_itemlist { top: auto!important; left: auto!important; position:absolute!important; overflow: hidden!important; display: block!important; } Please notice that this hasn't been tested on many situations.
Thanks
Mahesh
Comments: After looking at the CSS of the misplaced items (UL, LI, etc), I inserted this CSS as an "override" and it solved the problem: .ajax__combobox_itemlist { top: auto!important; left: auto!important; position:absolute!important; overflow: hidden!important; display: block!important; } Please notice that this hasn't been tested on many situations.