Re: DynaValidatorForm and BigDecimal problem

2014-06-05 Thread abhijeettomar
message in context: http://struts.1045723.n5.nabble.com/DynaValidatorForm-and-BigDecimal-problem-tp3458219p5716159.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: user-unsubscr

RE: Re: DynaValidatorForm and BigDecimal problem

2007-03-02 Thread Gundersen, Richard
ish Bank plc 24 Mount Street Manchester M2 3LS -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Laurie Harper Sent: Thursday, March 01, 2007 8:40 PM To: user@struts.apache.org Subject: Re: DynaValidatorForm and BigDecimal problem Bear in mind that this way, if the use

Re: DynaValidatorForm and BigDecimal problem

2007-03-01 Thread Laurie Harper
lto:[EMAIL PROTECTED] Sent: Thursday, March 01, 2007 4:13 PM To: Struts Users Mailing List Subject: Re: DynaValidatorForm and BigDecimal problem It has nothing to do with Struts, the error message is saying that commons BeanUtils cannot convert the string from the form submit into a BigDecimal.

RE: DynaValidatorForm and BigDecimal problem

2007-03-01 Thread Gundersen, Richard
ginal Message- From: Ed Griebel [mailto:[EMAIL PROTECTED] Sent: Thursday, March 01, 2007 4:13 PM To: Struts Users Mailing List Subject: Re: DynaValidatorForm and BigDecimal problem It has nothing to do with Struts, the error message is saying that commons BeanUtils cannot convert the string fro

RE: DynaValidatorForm and BigDecimal problem

2007-03-01 Thread Gundersen, Richard
Bank plc 24 Mount Street Manchester M2 3LS -Original Message- From: Ed Griebel [mailto:[EMAIL PROTECTED] Sent: Thursday, March 01, 2007 4:13 PM To: Struts Users Mailing List Subject: Re: DynaValidatorForm and BigDecimal problem It has nothing to do with Struts, the error message is saying

Re: DynaValidatorForm and BigDecimal problem

2007-03-01 Thread Ed Griebel
It has nothing to do with Struts, the error message is saying that commons BeanUtils cannot convert the string from the form submit into a BigDecimal. Turns out that your issue is BigDecimal is not as permissive as Double when it converts a non-numeric string to a BigDecimal. If a string is not a

DynaValidatorForm and BigDecimal problem

2007-03-01 Thread Gundersen, Richard
Hi Has anyone had problems with BigDecimal and DynaValidatorForms? I've got a form with two fields (advisorFee and grossIncome) defined as java.lang.Double. I want to change them to java.math.BigDecimal because they are money fields. If I change advisorFee to BigDecimal, the validation fails wh