Re: Problem moving from 2.0.14 to 2.1.6

2009-02-03 Thread Oleg T.
e problem, although I didn't seem to need to implement > ModelDriven. I just added appendPrefix=false. > > Cheers > Gus. > > > -Original Message- > From: dweebo [mailto:dwe...@pente.org] > Sent: Tuesday, 27 January 2009 10:59 a.m. > To: Struts Users Mailing List

Re: Problem moving from 2.0.14 to 2.1.6

2009-01-26 Thread dweebo
I ran into the same issue, not from upgrading, just starting from scratch. I resolved the issue by: 1. Making my action implement ModelDriven 2. passing appendPrefix=false to visitorfieldvalidator For example, my action is MemberAction implements ModelDriven { public Member getModel() {

Re: Problem moving from 2.0.14 to 2.1.6

2009-01-26 Thread Oleg T.
Thanks Gus, you are correct that is the same exact case. I still have not found a work around other then passing an actually message with: @VisitorFieldValidator(message = "Please ") What worked with 2.0.x now does not: @VisitorFieldValidator(message = "") Any other suggestions guys? Since Gus