在SelectOneMenu的更改事件上调用ajax请求之前的确认对话框

时间:2014-04-25 18:26:19

标签: javascript ajax jsf

我有一个主要的SelectOneMenu对象和一个面板,下面有一个基于SelectOneMenu值有条件地渲染的多个面板。所以我在SelectOneMenu中包含了一个主要的p:ajax请求。 ajax请求正常触发,面板显示正常,没有任何问题。

但是现在我想在更改SelectOneMenu之前添加确认以继续执行ajax请求以警告他们他们在面板中输入的任何值都将丢失。所以我添加了一个p:ajax的onstart事件,并包含了一个javascript函数,它有javascript确认。问题是当用户选择"取消"按钮,ajax没有触发,但是我的SelectOneMenu选择了新值。我想在click事件中调用ajax请求。但是,表面SelectOneMenu没有点击事件。

JSF代码:

<p:selectOneMenu id="methodOfId" value="#{cc.attrs.comboBoxValue}">
<f:selectItem itemValue="-1" itemLabel=""/>
<f:selectItems value="#{cc.attrs.comboBoxOptions}" var="methodOfId" itemValue="#{methodOfId.id}" itemLabel="#{methodOfId.name}"/>
<f:param name="cid" value="#{cc.attrs.beanConversationID}" />
<p:ajax update="dynamicPanels" process="@this" onstart="return confirmMethodOfIdChange()"/>
</p:selectOneMenu>

<p:panel id="dynamicPanels">
    <ui:include src="#{cc.attrs.panelSrc}" />
</p:panel>

Javascript代码:

function confirmMethodOfIdChange() {
var userResponse = confirm("Are you sure you want to change your selection?");
     return userResponse;
}

现在我如何更改SelectOneMenu以显示其旧值?我想到甚至使用jsf SelectOneMenu中的f:ajax和下面的javascript代码。它要求确认但我在确认框中点击OK,它不执行ajax请求。

function confirmMethodOfIdChange(data) {
    alert("inside confirm");    
var ajaxStatus = data.status; // Can be "begin", "success" and "complete"

if (ajaxStatus == 'begin'){
    var userResponse = confirm("Are you sure you want to change your selection?");
    if (userResponse) {
        return true;
    } else {
        return false;
    }
}

return true;

}

2 个答案:

答案 0 :(得分:7)

你可以使用&lt; p:confirmDialog&gt;组件并将其与selectOneMenu widgetVar结合使用。只需删除&lt; p:ajax&gt;并在确认对话框中将您的操作设置为是按钮。如果单击是,将执行操作。如果没有改变将被还原。

<p:selectOneMenu widgetVar="ps" onchange="confirm.show()">
    <f:selectItem itemValue="1" itemLabel="1"/>
    <f:selectItem itemValue="2" itemLabel="2"/>
    <f:selectItem itemValue="3" itemLabel="3"/>
</p:selectOneMenu>

<p:confirmDialog widgetVar="confirm" message="Are you sure you want to change your selection?" header="WARN!" severity="alert">
    <p:commandButton value="Yes" process="@form" update="myform" oncomplete="confirm.hide()" />
    <p:commandButton value="No" type="button" 
        onclick="ps.selectValue(ps.preShowValue.val());confirm.hide()" />
</p:confirmDialog>

答案 1 :(得分:4)

阐述@bhdrk回答:

请勿忘记拨打PF(&#39;&lt; widget name&gt;&#39;)来抓取您的小部件: onchange="PF('confirm').show()"onclick="PF('ps').selectValue(PF('ps').preShowValue.val());PF('confirm').hide()"等。