显示标记 - 可编辑行

时间:2014-03-18 05:51:59

标签: java displaytag

我使用display标签以表格形式显示数据。我们想要添加新的可编辑行以在表中添加新记录。如果表有一个或多个记录,我可以在表的末尾添加一个可编辑的行并保存。

如果表没有任何记录,如何添加新的可编辑行?

1 个答案:

答案 0 :(得分:2)

你可以试试这个:

<s:if test="%{list.size == 0}">
// create an HTML table with an <input> in a column to add records
</s:if>
<s:else>
// your display table with decorator to add new records
</s:else>