当valueChangeListener与JSF页面中的验证器一起使用时,它中的oldValue和newValue错误



我在h:inputText字段中使用了一个验证器和一个valuechangeListener。

<h:inputText id="quantityInput" required="true"
validator="#{CartController.validateQuantity}"
value="#{cartLine.quantity}" size="6" maxlength="15"
styleClass="numeric"
onchange='updateAndSubmit("#{CartController.rowIndex +1}", "tabs_root:updatedRow")'
onkeyup='checkEnter(event,"#{CartController.rowIndex +1}", "tabs_root:updatedRow")'
style="margin-right:0.4em"
tabindex="#{CartController.tabIndex}"
valueChangeListener="#{CartController.quantityListener}">
<rd:convertNumber
    maxFractionDigits="#{CartController.noOfQuantityDecimals}"
    minFractionDigits="#{CartController.noOfQuantityDecimals}" />
</h:inputText>

我得到相同的oldValue和newvalue在我的valuechangeListener当我改变输入文本框。当我删除验证器时,这个问题消失了,当我删除验证器时,我在valuechangeListener中获得了正确的oldValue和新值。

这是怎么回事,你知道吗?

这里是验证器方法
    public void validateQuantity(FacesContext facesContext,
        UIComponent component, Object value) throws ValidatorException,
        Exception {
    try {
        if (isCurrentRowItem()) {
            int quantityValidationResult = quantityControl(value,
                    getCurrentGoods());
            if (quantityValidationResult != QUANTITY_OK) {
                setViewErrorColumn(true);
                FacesMessage msg = new FacesMessage();
                if (quantityValidationResult == QUANTITY_TO_LOW) {
                    String felTextMiQuant = Text.get(
                            TextProperties.ANGIVENKVANTITETMINDREBESTKVANT,
                            getApUserData().getUser().getCultureSetting());
                    msg.setSummary(felTextMiQuant + " " + minQuantity);
                    getActiveCartAndTemplateTab().getErrorList().put(
                            new Integer(getRowIndex()), msg.getDetail());
                } else {
                    String felTextMuQuant = Text
                            .get(TextProperties.ANGIVENKVANTITETEJTILLATENMULTIPEL,
                                    getApUserData().getUser()
                                            .getCultureSetting());
                    msg.setSummary(felTextMuQuant + " " + multipleQuantity);
                    getActiveCartAndTemplateTab().getErrorList().put(
                            new Integer(getRowIndex()), msg.getDetail());
                }
                // Activate the previous tab, the one containing the errors,
                // in case the user tries to activate another
                if (cartAndTemplateController != null)
                    cartAndTemplateController
                            .setActiveTab(cartAndTemplateController
                                    .getActiveTab());
                throw new ValidatorException(msg);
            } else {
                // if we don't set here it will be impossible to correct more then one error
                double valueAsDouble;
                Line line = (Line) getCartEntity()
                        .getLines(getApUserData()).get(validatorCounter);
                if (value instanceof Long) {
                    valueAsDouble = ((Long) value).doubleValue();
                }
                else if (value instanceof String){
                    valueAsDouble = Double.parseDouble((String) value);
                }
                else {
                    valueAsDouble = (Double) value;
                }
                    line.setQuantity(getApUserData(), valueAsDouble);
            }
            validatorCounter++;
        }
    } catch (IllegalArgumentException e) {
    }
}

我设法解决了这个问题:),故事是这样的:

实际上在到达valueChangeListener之前,目标组件仍然有它的oldValue。运行valueChangeListener后,组件的值将被更改为新输入的值。

由于验证器在valueChangeListener之前运行,因此验证器方法中组件值的任何更改都会影响Listener方法中的oldValue。

在我的验证器中,我使用新输入的值(来自验证器类的"对象值"参数)设置组件的值,因此它导致在侦听器中获得相同的oldvalue和newValue。

相关内容

  • 没有找到相关文章

最新更新