我想从单个按钮显示不同的对话框取决于backbean计算。就像显示一个消息"比尔没有已经支付",如果客户输入重复的账单否,如果账单没有比#34显示的那样;比尔已成功支付"。我怎样才能做到这一点?
支持班级:
private String oncomplete="";
public String getOncomplete() {
return oncomplete;
}
public void setOncomplete(String oncomplete) {
this.oncomplete = oncomplete;
}
public void bill_fees_calculation(){
if(bill_no=="wrong"){
oncomplete = "PF('wrongDialog').show()";
}
else{
oncomplete = "PF('rightDialog').show()";
}
}
在我的xhtml中:
<p:commandButton oncomplete="#{backingbean.bill_fees_calculation}" icon="ui-icon-search" title="View" update=""/>
<p:dialog header="Bill Info" widgetVar="wrongDialog" modal="false" showEffect="fade" hideEffect="explode" resizable="false" closable="true" closeOnEscape="true">
<p:outputPanel id="billDetail" autoUpdate="true" style="text-align:center;">
<p:panelGrid columns="2" columnClasses="label,value">
<h:outputText value="Output:" />
<h:outputText value="Bill no has been paid already" />
</p:panelGrid>
</p:outputPanel>
</p:dialog>
<p:dialog header="Bill Info" widgetVar="rightDialog" modal="false" showEffect="fade" hideEffect="explode" resizable="false" closable="true" closeOnEscape="true">
<p:outputPanel id="billDetail" autoUpdate="true" style="text-align:center;">
<p:panelGrid columns="2" columnClasses="label,value">
<h:outputText value="Output:" />
<h:outputText value="Bill no has been paid successfully" />
</p:panelGrid>
</p:outputPanel>
</p:dialog>
答案 0 :(得分:3)
您可以使用RequestContext#execute()
以编程方式声明应在完成当前ajax请求时执行的JavaScript代码。
public void billFeesCalculation() {
RequestContext requestContext = RequestContext.getCurrentInstance();
if ("wrong".equals(billNo)) {
requestContext.execute("PF('wrongDialog').show()");
}
else{
requestContext.execute("PF('rightDialog').show()");
}
}
请注意,我修复了原始代码段中的其他(severe)问题。
对于具体问题,无关,如果您只使用一个带有动态(面部)消息的对话框,那么代码会更加干净和DRY。