just wanted to check if my patch made it into rc4?

On Thursday 02 April 2009 23:37:11 Johan Compagner wrote:
> I guess it would be better to fix it.
> Have to look into the code better, do you have a patch for it?
>
> On 02/04/2009, Lutz Müller <[email protected]> wrote:
> > 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]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to