当我使用PrimeFaces p:commandButton
<p:commandButton action=#{bean.action} />
我没有看到输入的验证消息(默认h:
或者PrimeFaces p:
。)例如
<f:validateRequired />
当我使用默认命令按钮时
<h:commandButton action=#{bean.action} />
我确实看到了验证。造成这种差异的原因是什么?
我正在使用Prime Faces 3.5和Mojarra 2.1.18
<h:form id="reliefhourheadcopy-form">
<h:panelGrid columns="1">
<h:outputText value="Kopiere Entlastungsstunden von" />
<h:outputText value="Semester: #{reliefHourHeadManagedBean.reliefHourHead.semester}" />
<h:outputText value="Jahr: #{reliefHourHeadManagedBean.reliefHourHead.year}" />
<h:outputText value="nach" />
</h:panelGrid>
<h:panelGrid columns="3">
<h:outputText value="Semester:" />
<p:selectOneMenu id="semester" value="#{reliefHourHeadManagedBean.semester}">
<f:selectItems value="#{reliefHourHeadManagedBean.semesterTypes}" />
</p:selectOneMenu>
<h:message for="semester" />
<h:outputText for="yearSpinner" value="Jahr:" />
<p:spinner id="yearSpinner" value="#{reliefHourHeadManagedBean.year}" maxlength="4" min="2000" max="2030" size="4">
<f:validateRequired />
<f:validateLongRange minimum="2000" maximum="2030" />
</p:spinner>
<h:message for="yearSpinner" />
</h:panelGrid>
<h:panelGrid columns="1" style="margin-top:25px">
<p:commandButton action="#{reliefHourHeadManagedBean.copyReliefHourHead}" value="Kopieren" icon="ui-icon-copy" >
<f:param name="reliefhourhead_id" value="#{reliefHourHeadManagedBean.reliefHourHeadId}" />
</p:commandButton>
</h:panelGrid>
</h:form>
答案 0 :(得分:5)
就像@Partlov在下面的评论中所写的那样,
主要区别在于:p:commandButton默认为AJAX,h:commandButton默认为非AJAX。
所以
<p:commandButton ... />
更像是
<h:commandButton ...>
<f:ajax/>
</h:commandButton>
或其他方式
<h:commandButton ... />
就像
<p:commandButton ajax="false" ... />
p:commandButton
默认会提交表单。但是,默认情况下,在ajax调用完成后,它不会更新表单中的任何内容,因此不会显示消息(在开发模式下,这些消息会在消息入队但未显示的日志文件中显示)。非ajax h:commandButton
执行完整页面刷新,确实显示消息。为了在使用p:commandButton
时更新表单(包含消息组件),您需要添加update
属性:
<p:commandButton action="#{reliefHourHeadManagedBean.copyReliefHourHead}" value="Kopieren" icon="ui-icon-copy" update="@form">
<f:param name="reliefhourhead_id" value="#{reliefHourHeadManagedBean.reliefHourHeadId}" />
</p:commandButton>
在f:ajax
中添加(多余的)p:ajax
或p:commandXXX
会导致奇怪的未定义行为
另见