Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

List items in Ajax toolkit combo box appears in wrong position

enter image description here

I have an Ajax Toolkit combobox in a web page, which have a master page. The Combobox is inside a table.When the webpage loads the listitems of this combo box are appearing below far away from the combo box.

What is the fix?? :(

like image 253
Sin Avatar asked Jan 31 '26 07:01

Sin


1 Answers

.ajax__combobox_itemlist
{
position:absolute!important; 
height: 100px !important;
overflow: auto !important;
top: auto !important;
left: auto !important;
}

It's work perfectly....

like image 79
sonu Avatar answered Feb 01 '26 23:02

sonu