0
我有一個滑塊和一個復位按鈕JSF表單:Primefaces滑塊不會重置爲0
<div class="field">
<p:outputLabel for="amount" value="Amount" />
<h:panelGrid columns="1" style="margin-bottom: 10px" id="amount">
<p:inputText id="slider" value="#{myBean.myBo.amount}" />
<p:slider for="slider" maxValue="20" />
</h:panelGrid>
</div>
<h:commandButton value="Reset" type="reset" action="#{myBean.reset}" update="form" process="@this" class="button"></h:commandButton>
復位功能如下:
public void reset() {
RequestContext.getCurrentInstance().reset("form:form");
this.registrationFormBo.clear();
}
p:inputText
具有正確的值,而滑動條本身在此示例中的值爲9。
問題
滑塊不會重置而值一樣。
嘗試使用process =「@ form」 –
@MarcelJacquesMachado這不起作用 –
OK。那麼爲什麼你使用「form:form」? –