dhtmlXCombo: submit not update value

When I written any thing in dhtmlXCombo field and then go directly to the button “submit” value added is not updated and remains the old value.
I find this:

dhtmlXCombo.prototype._onBlur = function() { var self = this.parentNode._self; window.setTimeout(function(){ if (self.DOMlist._skipBlur) return !(self.DOMlist._skipBlur=false); self._confirmSelection(); self.callEvent("onBlur",[]); },100)
If i change the time in setTimeout from 100 to 1 the problem disappears.
do it is important the value 100?
do it have a other solution?

Hello,

to solve the issue with submit you may try to call _confirmSelection() method on form submit:

...