You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by bu...@apache.org on 2004/12/29 04:15:43 UTC

DO NOT REPLY [Bug 32871] New: - Validwhen and floats(maybe integers)

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=32871>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=32871

           Summary: Validwhen and floats(maybe integers)
           Product: Struts
           Version: 1.2.4
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: Validator Framework
        AssignedTo: dev@struts.apache.org
        ReportedBy: masterperas@zmail.pt


I needed to validate a field if another one was diferent than zero, it should be
expected that i was able to do it like so :
<field property="outros" depends="validwhen">
		<arg2 key="compostagemdataForm.outros.invalido"/>
		<var>
			<var-name>test</var-name>
			<var-value>(qtoutros==0)</var-value>
		</var>
</field>

For some reason this rule allways failed. i had to reformulate the rule :
<field property="outros" depends="validwhen">
		<arg2 key="compostagemdataForm.outros.invalido"/>
		<var>
			<var-name>test</var-name>
			<var-value>(qtoutros=='0.0') </var-value>
		</var>
</field>

wich is weird! qtoutros is a String property on the bean, but can be converted
to float.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org
For additional commands, e-mail: dev-help@struts.apache.org