Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.0.7
-
None
Description
BeanEditor does not support informal parameters like BeanEditForm does.
For example the following text area inside the BeanEditor is ignored and the default TextField is used instead. In a BeanEditForm this same <t:paramater..> element would work correctly.
<form t:type="form" t:id="form">
<t:errors />
<span t:type="beaneditor" t:object="component" reorder="id,name,description" >
<t:parameter name="description">
<t:label for="description"/>
<t:textarea t:id="description" cols="80" rows="5" value="mybean.description"/>
</t:parameter>
</span>
</form>