At end.

> -----Original Message-----
> From: Donald Ball [mailto:dball@;rhoworld.com]
> Sent: Thursday, October 24, 2002 9:12 AM
> 
> I'm getting the following exception:
> 
> ----- Root Cause -----
> javax.servlet.jsp.JspTagException: 
> javax.servlet.jsp.JspException: An error
> occurred while evaluating custom action attribute "test" with value
> "${rows.isLimitedByMaxRows}": Unable to find a value for
> "isLimitedByMaxRows" in object of class
>  "org.apache.taglibs.standard.tag.common.sql.ResultImpl" 
> using operator "."
>     at
> 
> when I try to evaluate this block:
> 
> <c:if test="${rows.isLimitedByMaxRows}">
>   <c:url var="url" value="${requestScope.requestURI}">
>     <c:param name="startRow" value="${view.startRow + view.maxRows}"/>
>   </c:url>
>   <a href="<c:out value='${url}'/>">Next</a>
> </c:if>
> 
> I'm sure I'm doing something stupid, but I don't know what. I 
> have double
> checked that the jstl-1.0.1 RI's ResultImpl does, in fact, 
> declare a public
> boolean isLimitedByMaxRows() method. What gives?

Try changing the reference to "${rows.limitedByMaxRows}".  EL references
don't specify the method name, they specify the JavaBeans property.

--
To unsubscribe, e-mail:   <mailto:taglibs-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:taglibs-user-help@;jakarta.apache.org>

Reply via email to