Details
-
New Feature
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
5.0.15
-
None
-
None
Description
Towards greater conciseness:
How about making these equivalent:
<t:beaneditform t:id="new" object="newPosting" submitlabel="message:post" include="title,content">
<t:parameter name="content">
<t:label for="content"/>
<br/>
<t:richtextarea t:id="content" rows="10" cols="80" value="newPosting.content"/>
</t:parameter>
</t:beaneditform>
and
<t:beaneditform t:id="new" object="newPosting" submitlabel="message:post" include="title,content">
<p:content>
<t:label for="content"/>
<br/>
<t:richtextarea t:id="content" rows="10" cols="80" value="newPosting.content"/>
</p:content>
Obviuosly, p: would need to be mapped to a Tapestry namespace.