我开始用挂毯开发,我有一个问题。实际上,我对挂毯中的表格和表格标题有疑问。我知道,如果您有一个用户类网格:
public class User {
public String firstName;
public String lastName;
}
<t:grid source="users" />
Tapestry 将生成类似于以下内容的 HTML:
<table>
<thead>
<tr>
<th class="firstName">First Name</th>
<th class="lastName">Last Name</th>
</tr>
</thead>
<tbody>
...
<tr>
<td class="firstName">Traci</td>
<td class="lastName">Lords</td>
</tr>
...
</tbody>
</table>
我的问题是 Tapestry 是如何设置标题的值的?
我的意思是挂毯如何从“firstName”类中设置值“First Name”?
我希望我的问题很清楚。
谢谢你。