i'm experiencing a situation with swf 2.3 and mvc 3.0.5 where i am not seeing form level errors (validation errors associated at the class level v. a property level) when using:
yet i will see the information dumped using the more verbose syntax:Code:<form:errors path=""/>
as an aside, the <form:errors> syntax in an identical jsp file works flawlessly in plain old spring mvc minus webflow.Code:<spring:hasBindErrors name="${commandName}"> <div class="error"> <spring:bind path="${commandName}.*"> <span><c:out value="errors=${errors}" /> </span> <c:forEach items="${errors.allErrors}" var="error"> <span><c:out value="error=${error}" /> </span> <br /> </c:forEach> </spring:bind> </div> </spring:hasBindErrors>
is this by design or is this a bug of sorts?
thanks,
tony.


Reply With Quote