繁体   English   中英

如何在rich:popupPanel中调用托管bean动作

[英]How to invoke managed bean action in rich:popupPanel

我需要与用户确认他或她是否确定要删除其帐户。 为此,我认为弹出屏幕会很酷。 但是大多数浏览器都会阻止弹出窗口。

所以我试图用popupPanel做到这一点 但是我猜想那不可能,因为我里面有一个commandLink,这就是我到目前为止所要做的:

<rich:popupPanel id="popup_delete_profile" modal="true" onmaskclick="#{rich:component('popup_delete_profile')}.hide()">
        <f:facet name="header">
            <h:outputText value="Aviso" />
        </f:facet>

        <f:facet name="controls">
            <h:outputLink value="#" onclick="#{rich:component('popup_delete_profile')}.hide(); return false;">
            Close
            </h:outputLink>
        </f:facet>


        <p>Are you sure ?</p>

        <h:commandLink value="Yes" action="#{userc.deleteUser}"></h:commandLink>

        <h:outputLink value="#" onclick="#{rich:component('popup_delete_profile')}.hide(); return false;">
            No
        </h:outputLink>        

    </rich:popupPanel>

这是我的manageBean:

    public void deleteUser(){
        try {
                eaoUser.delete(userb.getUser());
                // here I would like to refresh the popupPanel saying that was deleted with success and then logout

        } catch (Exception e) {
            view.errorMessage("ocorreu um erro, por favor tente novamente");
            e.printStackTrace();
        }
    }

编辑:

public String deleteUser() {
        FacesContext.getCurrentInstance().getExternalContext().invalidateSession();
        return "/index.xhtml?faces-redirect=true";

}

知道怎么做吗?

如何在rich:popupPanel中调用托管bean动作

   Add this code in your popUp.xhtml page

    Note:replace rich:popuppanal and use rich:modalPanel

    <a4j:commandLink styleClass="no-decor" execute="@this" render="@none"
        oncomplete="#{rich:component('confirmPane')}.show()">
        <h:graphicImage value="/images/icon-delete.gif" />
        </a4j:commandLink>

        <rich:modalPanel id="confirmPane" width="282" height="70">
        Are you sure you want to delete the row?
        <button id="cancel"  onclick="#{rich:component('confirmPane')}.hide();" >
        <h:outputText value="cancel" escape="false" />
        </button>
        <button id="delete"  onclick="#{rich:component('confirmPane')}.hide();                  clickHiddenButton('officeForm:yesSubmit');return true;">
        <h:outputText value="yes" escape="false" />
        </button>
        <h:commandButton id="yesSubmit" style="visibility:hidden;"
        onclick="#{rich:component('confirmPane')}.hide()" action="deleteRecord" />
        </rich:modalPanel>

richFaces现场演示中有两个样本可以解决您的问题

在RF 4现场演示中,它们包括受管Bean的示例。

希望能帮助到你。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM