the value in the header is not preselected on mouse over. This event just highlight options. If for example the mouse is over non-selected option and you move the mouse out of the combo, this option won’t become selected.
If you need to fire a certain event on mouseover, you need to modify dhtmlxcombo.js:
locate dhtmlXCombo.prototype._listOver method definition in sources/dhtmlxcombo.js
find that._tempSel.select(); line here
and put the following after it:
that.callEvent(“onMouseOver”,[i]);
This is the call of custom combo event onMouseOver. It can be used as follows:
yourCombo.attachEvent(“onMouseOver”,function(optionIndex){
// your code
});
Get a guaranteed answer from DHTMLX technical support team
under the most suitable support plan