Hi team
The cotents of pulldown list can not be selectd by mouseover event.
The backgroud color of mouseovered record is not changed to the selected color (blue).
Thanks.
Do you mean dhtmlxCombo?
For combo , problem is not reconstructable in local or online samples
dhtmlx.com/docs/products/docsExp … ?type=smpl
If issue occurs only in your code - please provide any kind of sample where problem can be reconstructed ( in theory problem can be used by custom css defined for options, such styling may override color or selection. )
Thanks.
Now I want to change the background color. could you tell me in which files I can set it.
If you mean bg. color of combo itself - it can be changed in dhtmlxcombo.css
.dhx_combo_box{
position:relative;
text-align:left;
border:1px solid #7F9DB9;
height:20px;
_height:22px;
overflow:hidden;
background-color: white; //<= this is it
}
It’s not bg.color of combo itself . It’s the bg.color of the option which is mouseovered.
dhtmlxcombo.css
.dhx_selected_option{
background-color:navy; //<= here it is
color:white;
}
Thanks very much.