我正在使用Eclipse Luna EE,Tomcat v7.0和ICEFaces 3.2
我有一个标签打印表单,用户输入项目编号,项目名称和标签类型等信息。然后用户提交表单。这将信息发送到ZPL字符串中的标签打印机,然后打印出该项目的正确标签。这一切都没有问题。
如果价值很高(生产中100+),表格会检查打印数量。如果打印数量超过某个值(> 2.纯粹用于测试目的),则将“testFlag”布尔值设置为true,显示模态框并设置错误标志,以便不执行打印命令
模态框询问用户是否输入了正确的数量,并显示“是/否”按钮。
printUI和模态弹出窗口位于同一个<ice:form>
元素内,如果testFlag设置为true,弹出框将呈现并可见。
问题:
当我单击模态框中的“是”按钮时,它不会执行我为其分配的操作(System.out.println("Yes Button!")
)。模态框关闭,没有任何反应。
然后我可以重新提交表单并再次出现模式框,然后单击“是”并且没有任何反应。
如果我将数量更改为2并提交,则执行打印命令没问题。
我猜这是会议处理方式的问题。
问题: 如何获得模态框上的“是”按钮以执行我想要的代码?
我试过了:
使用<ice:commandLink>
,<h:button>
,<h:commandButton>
,<h:commandLink>
将模式弹出窗口和表单放在单独的<ice:form>
标记中(这会刷新会话并删除所有输入的数据)。
使用actionListener
包含以下格式的代码:
<h:body>
<div id="surround">
<ice:form id="test" prependId="false">
<ui:include src="./printUI.xhtml" />
<ui:include src="./printQtyPopup.xhtml" />
</ice:form>
</div>
</h:body>
printQtyPopup.xhtml
<ui:composition>
<ice:panelPopup modal="true" visible="#{validateBean.testFlag}" rendered="#{validateBean.testFlag}">
<f:facet name="header">
<ice:outputText value="Print Quantity Check" />
</f:facet>
<f:facet name="body">
<ice:panelGrid>
<ice:outputText value="You selected a print quantity of: #{validateBean.printAmount}" />
<ice:outputText value="Is this correct?" />
<ice:panelGroup>
<ice:commandButton value="No" />
<ice:commandButton value="Yes" action="#{validateBean.checkQtyYes}" />
</ice:panelGroup>
</ice:panelGrid>
</f:facet>
</ice:panelPopup>
</ui:composition>
相关的ValidateBean.java代码
public void validate() { //validation checks are carried out when the user clicks "Print" on the printUI.
if (!errorFlag && checkQty && printQty > 2) {
testFlag = true;
errorFlag = true;
System.out.println("Qty Check Modal");
}
if (!errorFlag) {
if (printQty > 0) {
initialiseString();
initialisePrinter();
clear();
} else {
printQty = 0;
errorMessage = true;
quantityInvalid = true;
errorFlag = true;
}
}
}
public void checkQtyYes() {
System.out.println("Yes Button!");
}
答案 0 :(得分:0)
我找到了另一种选择。
我删除了模态弹出窗口以及与之关联的任何代码。
我在表单末尾添加了<ice:panelConfirmation>
。仅当打印数量高于我设置的数量时才会显示。
我使用valueChangeListener="#{validateBean.printQtyChange}"
{/ 1}}在我的打印数量<h:inputText>
上使用onblur="submit()"
来获取该号码
我尝试了onchange="submit()"
但在提交一系列打印作业时遇到了问题。我必须按“ENTER”强制激活onchange
属性,我确信用户不需要。
<ice:panelConfirmation>
通过暂停表单提交并在继续或停止提交之前等待响应来工作。这完成了我试图用模态弹出窗口实现的目标。
打印数量输入文字:
<h:inputText id="printQty" value="#{validateBean.printAmount}" size="8" autocomplete="off"
maxlength="3" required="true" onblur="submit()"
valueChangeListener="#{validateBean.printQtyChange}" />
<强> valueChangeListener:强>
public void printQtyChange(ValueChangeEvent e) {
printAmount = e.getNewValue().toString();
try {
ls.setPrintQty(Integer.parseInt(printAmount));
} catch (NumberFormatException eve) {
errorMessage = true;
quantityInvalid = true;
errorFlag = true;
}
printQty = ls.getPrintQty();
System.out.println("Qty : " +printQty);
if (printQty < 1) {
errorMessage = true;
quantityInvalid = true;
errorFlag = true;
}
}
小组确认:在<ice:form>
内。就在表格结束之前
<ice:panelConfirmation id="confirmQty"
acceptLabel="Yes"
cancelLabel="No"
message="Your entered the quantity: #{validateBean.printQty}. Is this correct?"
title="Confirm Quantity"
draggable="false"
rendered="#{validateBean.printQty > 2}" />
打印按钮与<ice:panelConfirmation>
<ice:commandButton styleClass="button" id="printButton" value="Print"
actionListener="#{validateBean.validate}" panelConfirmation="confirmQty" />
如果有人确实知道从条件ICEfaces模式弹出窗口调用托管bean的方法,那也很棒。
<强>更新强>
我已将所有<h:inputText>
更改为<ice:inputText>
,并将partialsubmit="true"
添加到数量的输入字段中。添加此项后,我就可以删除onblur="submit()"
新打印数量输入文字:
<ice:inputText id="printQty" value="#{validateBean.printAmount}" size="8" autocomplete="off"
maxlength="3" required="true" valueChangeListener="#{validateBean.printQtyChange}"
partialSubmit="true" />
这解决了有时在提交一系列工作时仍然存在问题的问题。
我没有将partialsubmit="true"
放在<ice:form>
上,因为我必须将每个其他输入字段声明为partialsubmit="false"
,以防止执行不必要的代码。仅在我想检查的输入字段上显示它更整洁。