删除按钮上的selectOneListbox / selectManyMenu上的选择并单击Primefaces

时间:2018-09-20 09:13:04

标签: jsf primefaces

因此,我设计了一种具有selectOneListbox / selectManyMenu元素的简单表单,该元素用于根据用户选择生成一段文本。

一切正常。现在我想要的是,当用户单击“清除”按钮时,应撤消选择,并且页面应返回到初始状态(无选择)。

我该如何实现?

xhtml

        <h:form>
    <h:panelGrid columns="6" style="margin-bottom:10px;" cellpadding="5" columnClasses="label, value">
    <p:panel>
    <h6 style="width:10.4em;background-color:#ACBECE;">Comment  Type</h6>
    <!-- comment type -->
    <p:selectOneListbox id="basic1" value="#{decisionTreeBean.option1}" style=" font-size: 12px;background-color:silver;width:12em; height:10em; border-style:solid !important;border-width:0.5px !important; border-color:grey !important;">
         <f:selectItems value="#{decisionTreeBean.commentType}" var="X" itemLabel="#{X}" itemValue="#{X}" />
    </p:selectOneListbox>
    </p:panel>
<p:panel>
        <h6 style="width:10.4em;background-color:#ACBECE;">MTCN</h6>
        <p:selectManyMenu id="advanced1" value="#{decisionTreeBean.option2}" showCheckbox="true" style="font-size: 12px;background-color:silver;width:12em; height:10em; border-style:solid !important;border-width:0.5px !important; border-color:grey !important;">
            <f:selectItems value="#{decisionTreeBean.mtcns}" var="X" itemLabel="#{X}" itemValue="#{X}" />                  
        </p:selectManyMenu>
        </p:panel>
    </h:panelGrid>

    <!-- Text Area -->
    <p:inputTextarea  id="decisionNotes" readonly="#{facesContext.renderResponse}" value="#{decisionTreeBean.decisionNotes}" styleClass="dispostionInputTextArea" autoResize="true">
    </p:inputTextarea>
    <br/>
    <p:commandButton  id="generateBtn" value="Generate Text" action="#{decisionTreeBean.generateText}" update=":#{p:component('decisionNotes')}">
    </p:commandButton>

    <p:commandButton  id="clearBtn" value="Clear" action="#{decisionTreeBean.clearText}" update=":#{p:component('decisionNotes')}">
    </p:commandButton>
    <p:ajaxStatus onstart="PF('statusDialog').show()"
            onsuccess="PF('statusDialog').hide()" />
        <p:dialog widgetVar="statusDialog" modal="true" draggable="false"
            closable="false" resizable="false" showHeader="false">
            <p:graphicImage value="/images/ajax-loader.gif" />
        </p:dialog>

    </h:form>

在我的bean中,我有一个清除方法,可以清除文本区域的内容。我希望该按钮撤消选择以及ajax调用的一部分。

public void clearText() {
        this.decisionNotes=" ";
    }

What it looks like

(为简便起见,我在xhtml中仅包括2列。总共有5个具有相同功能的独立选择列)

1 个答案:

答案 0 :(得分:1)

我也将简单地在bean方法中重置Menu / Box的值:

public void clearText() {
    this.decisionNotes=" ";
    this.option1 = null;
    //and so on...
}

然后,您只需要更新按钮的update属性中的组件即可。但是,如果您要刷新表单中的几乎每个组件,我都会更新整个表单而不是每个组件。因此,只需使用update="@form"

注意:p:commandButton的默认过程值为@form。因此,您的清除按钮将在每次单击时完全处理整个表单,而无需这样做。我将其设置为process="@this",因此它将执行其操作。