Re: [Formsess-devel] Some bugs
Status: Beta
Brought to you by:
mrkatana
From: David <da...@df...> - 2004-06-17 09:23:28
|
Thanks for reporting, I fixed that. (without support for dynamical fieldnames, this is too advanced to make it into the 2.0.0 release imho) - david On Thu, 17 Jun 2004 10:22:56 +0200 "Raoul Pierre" <pie...@wa...> wrote: > Hello, > > In Formsess SVN from 06/03/2004 > > 1/ In FormsessValidatorJavascriptSyntax::addValidationCode > Replace > $this->addLine("// syntax validation for $fname"); > with > $this->addLine("// syntax validation for $fieldName"); > or better > $this->addLine( '// syntax validation for ' > . $this->_fsObject->_smartyEmbed('/literal') > . $fieldName > . $this->_fsObject->_smartyEmbed('literal') > ); > > > > 1/ In FormsessValidatorJavascriptChecked > > Replace > $this->addLine("// checks if $fname is checked"); > with > $this->addLine("// checks if $fieldName is checked"); > or better > $this->addLine('// Checks if ' > . $this->_fsObject->_smartyEmbed('/literal') > . $fieldName > . $this->_fsObject->_smartyEmbed('literal') > . ' is checked' > ); > > and > $this->addLine(" if ($fieldVarStrin g[i].checked) {"); > with > $this->addLine(" if ({$fieldVarString}[i].checked) {"); > > > Regards > > Pierre > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by The 2004 JavaOne(SM) Conference > Learn from the experts at JavaOne(SM), Sun's Worldwide Java Developer > Conference, June 28 - July 1 at the Moscone Center in San Francisco, > CA REGISTER AND SAVE! http://java.sun.com/javaone/sf Priority Code > NWMGYKND_______________________________________________ > Formsess-devel mailing list > For...@li... > https://lists.sourceforge.net/lists/listinfo/formsess-devel > |