Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
5.3.7
-
None
Description
http://tapestry.apache.org/current/apidocs/org/apache/tapestry5/corelib/components/If.html
Example .tml for this component (If) throws an exception
Parameter(s) 'page' are required for org.apache.tapestry5.corelib.components.PageLink, but have not been bound.
<t:if test="user">
Welcome back, ${user.firstName}
<p:else>
<t:pagelink name="login">Login</t:pagelink> /
<t:pagelink name="register">Register</t:pagelink>
</p:else>
</t:if>
Simple fix 's/name/page/g' in that example.