Change background color of the input text in a dhtmlxCombo

Hello,

How to change the background color of the input text Inside a dhtmlxCombo?

Hello
You need to apply the next style:

.dhx_combo_input { background-color: #FF0000; }

If you need bg color of all the combo -apply this:

.dhx_combo_box { background-color: #FFCC00; }

I wish a solution in javascript not by changing the css style.
for example:

mycombo.DOMelem…

Руку it is:

combo.DOMelem.style.backgroundColor = "#FFCC00"; combo.DOMelem_input.style.backgroundColor = "#FFCC00";