1

我使用 alertManager.success 输出 t:alerts 消息后使用按保存按钮。如果用户多次按下“保存”按钮,我会显示多条 t:alerts 消息。如何清除之前的 t:alerts 消息,以便只显示 1 条消息?

这是我的 tml 文件

<div class="center">
<t:alerts/>
</div>                      
<t:zone t:id="detailZone" id="detailZone" >
      <t:core.usermgmt.UserDetailComp t:id="detail"  mode="actionMode" previewUser="selectedUser" function="showFunctions"/>
</t:zone>   
4

1 回答 1

1
@SessionState(create = false)
private AlertStorage storage;

void onSomeEvent() {
    if (storage != null) {
        storage.dismissAll();
    }
}
于 2013-06-21T12:08:19.513 回答