Hi,
I have a problem with onfocus behaviour of autocompletetextfields in IE. The
stackoverflow exists in Firefox as well, but IE pops up an error dialog in the
users face, otherwise i would just ignore this.
The code causing the stack overflow is in line 100-110:
obj.onfocus=function(event){
if (cfg.showListOnFocusGain) {
if (mouseactive==1) return killEvent(event);
if (cfg.showCompleteListOnFocusGain) {
updateChoices(true);
} else {
updateChoices();
}
}
if(typeof objonfocus=="function")objonfocus.apply(this,[event]);
}
When i move the focus to the field in question, the last if statement always
evaluates to true, and the code block is entered again. is there a way to fix
this or to prevent IE from showing that annoying dialog? the stackoverflow
error is nothing nice, but i could live with it, because the component is
working allright. its just the error dialog which bugs me.
thanks for reading,
lutz
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]