我有一个Zone
内部 a Form
,Zone
用一个包含我想绑定到 parent 的输入字段的块进行更新Form
。不幸的是,这似乎不像我希望的那样容易,因为我收到了以下错误消息。
The Description component must be enclosed by a Form component. [at classpath:...Page.tml, line 100]
源代码的简化版本.tml
如下。
<t:form t:id="editForm" t:context="item.id">
<table>
<tr>
<th>Name</th>
<td><t:textField value="item.name"/></td>
</tr>
<t:block t:id="block">
<tr class="person">
<th>Description</th>
<td><t:textField t:id="description" value="item.description"/></td>
</tr>
</t:block>
<t:zone t:id="itemZone" id="itemZone"/>
<t:actionlink t:id="item" zone="itemZone">Click me!</t:actionlink>
</table>
</t:form>
有没有办法进行绑定,如果没有,还有其他选择吗?