【发布时间】:2017-04-21 14:31:22
【问题描述】:
我在 Primefaces 6 的对话框中有一个 p:messages,但这个元素没有显示任何内容。它只是不显示在屏幕上。我在 bean 中设置错误消息,但它不显示该消息。我希望错误消息显示在对话框中。我尝试在命令按钮和 Bean 中更新 p:messages。代码如下:
豆子:
public void persist() {
boolean error = false;
addErrorMessage("schedule_summary_error_message", "FUMBLE! Something went wrong! Try it again.", null); // Added this line so the error message can show no matter what but it still doesn't show.
for (int i=0; i < newMatchups.size(); i++) {
if (!matchupService.persist(newMatchups.get(i)))
error = true;
}
if (error) {
addErrorMessage("schedule_summary_error_message", "Something went wrong! Try it again.", null);
} else {
reloadCurrentMatchups();
RequestContext.getCurrentInstance().execute("PF('newScheduleDialog').hide()");
}
}
private static void addErrorMessage(String clientId, String summary, String detail) {
FacesContext context = FacesContext.getCurrentInstance();
context.addMessage(clientId, new FacesMessage(Constant.ERROR, summary, detail));
}
xhtml:
<p:dialog id="newScheduleDialog" appendToBody="true" responsive="true" widgetVar="newScheduleDialog" header="Creating the game schedule"
position="center top" closeOnEscape="true" width="60%" modal="true" style="overflow-y:auto;max-height:100%">
<p:ajax event="close" oncomplete="PF('createScheduleWizard').loadStep(PF('createScheduleWizard').cfg.steps[0], true)" />
<h:form id="schedule_form">
<p:wizard id="createScheduleWizard" widgetVar="createScheduleWizard" showStepStatus="false" flowListener="#{scheduleWizard.onFlowProcess}" showNavBar="false" >
<p:tab id="summaryTab" title="Summary">
<p:messages id="schedule_summary_error_message" for="schedule_summary_error_message" showDetail="true" showSummary="false" autoUpdate="true" closable="true" />
<p style="text-align: center;" class="sansation_bold16">Summary </p>
<ui:include src="../pages/matchup_carousel.xhtml" />
<p:commandButton value="Save and publish schedule" id="saveButton" widgetVar="saveButton" actionListener="#{matchupBean.persist}"
style=" -webkit-border-radius: 6px; border-radius: 6px; margin-top:20px"/>
</p:tab>
</p:wizard>
</h:form>
【问题讨论】:
标签: jsf primefaces dialog messages display