asp.net - ajax combobox not rendering correctly -



asp.net - ajax combobox not rendering correctly -

ajax combobox command not rendering , going in front end of other controls. when click on menu (li) tag , menu goes behind th ajax combo box.

here ajax combo box css using

.windowsstyle .ajax__combobox_inputcontainer .ajax__combobox_textboxcontainer input { margin: 0; border: solid 1px #7f9db9; border-right: 0px none; padding: 1px 0px 0px 5px; font-size: 13px; height: 18px; } .windowsstyle .ajax__combobox_inputcontainer .ajax__combobox_buttoncontainer button { margin: 0; padding: 0; background-image: url(/images/ajax/windows-arrow.gif); background-position: top left; border: 0px none; height: 21px; width: 21px; } .windowsstyle .ajax__combobox_itemlist { border-color: #7f9db9; }

is there anythinf ajax css using?

here menu css

{ height: 24px; position: relative; border-left: 1px solid #069; font-family: arial,sans-serif; margin-bottom: 6px;

}

z-index css property sets stack order of specific elements. element greater stack order in front end of element lower stack order.

to know more check link : z-index

css menu :

{ height: 24px; position: relative; border-left: 1px solid #069; font-family: arial,sans-serif; margin-bottom: 6px; // add together line menu css. z-index: 1000; }

or

change z-index of ajax control, here decrease stack order lower side maintain command @ of menu. if -1 not help can still lower downwards value of z-index control.

windowsstyle .ajax__combobox_inputcontainer .ajax__combobox_textboxcontainer input { margin: 0; border: solid 1px #7f9db9; border-right: 0px none; padding: 1px 0px 0px 5px; font-size: 13px; height: 18px; // add together line menu css. z-index: -1; }

i suggest you, inspect form browser , check best z-index you. , set it

asp.net ajax

Comments

Popular posts from this blog

php - Android app custom user registration and login with cookie using facebook sdk -

django - Access session in user model .save() -

php - .htaccess Multiple Rewrite Rules / Prioritizing -