我有一个 commandButton 作为表中行的一部分。它从列表中删除元素。这个列表是一个表的值。我知道该元素已成功删除,但表没有更新。如何使它工作。按钮标签:
<p:column style="width:1%">
<p:commandButton id="deleteButton" title="Del"
icon="ui-icon-close"
update="attachmentsTable" immediate="true"
action="#{myBean.attachTable.deleteAttachment(attachment.id)}">
</p:commandButton>
</p:column>
表格标签:
<p:dataTable id="attachmentsTable" var="attachment"
style="width:100%;"
value="#{myBean.attachTable.attachmentsList}"
emptyMessage="Empty">