Sorry Ryan, I'm ahead of you. ticket: https://mootools.lighthouseapp.com/projects/24057-mootoolsmore/tickets/393 pull request: http://github.com/mootools/mootools-more/pull/86
On Tue, Sep 28, 2010 at 8:24 AM, Aaron Newton <aa...@iminta.com> wrote: > Good catch. The ignoreHidden option came along after that line was authored > I'm guessing we just missed it. I'll alter it. Look for it in the next > release. > > > On Tue, Sep 28, 2010 at 4:20 AM, Robert <forpoc...@gmail.com> wrote: > >> I wonder why in Form.Validator test method we have this: >> >> if (validator && field.isVisible()) this.fireEvent('elementValidate', >> [isValid, field, className, warn]); >> >> and not this: >> >> if (validator && !(this.options.ignoreHidden && !field.isVisible()) ) >> this.fireEvent('elementValidate', [isValid, field, className, warn]); >> >> I have vanilla input form enhanced by some js controls (popup, meio- >> autocompliter, etc.) and this really makes it painful. >> Is it any reason to make it like this? I even tried with "msgPos" >> property - but it doesn't matter. >> >> What You think? >> >> >> thanks, >> Robert >> > >