How to add the onMouseover & onMouseout event to the Combo.

Hi ,
From our document for the Combo ,i can’t find the way to add the events onMouseover and onMouseout to the Combo object.

I really very need the effect. Is there a way to implement that ?

Thanks!!

I have found the way as below:
dhtmlxEvent(yourCombo.DOMelem_input,“mouseover”,function(){
action…
});
dhtmlxEvent(yourCombo.DOMelem_input,“mouseout”,function(){
action…
});

Hope these can help you …