0

我正在尝试将正常的 bean 验证附加到以编程方式生成的 Primefaces UIComponent 上的模糊事件。

如果我使用 xhtml 手动创建组件,效果很好,它看起来像这样:

<p:inputText id="customerName" value="#{editCustomerBean.name}" label="Name">
    <p:ajax async="true" event="blur" update="customerName, customerNameMsg" />
</p:inputText>

不幸的是,我需要动态生成这个组件,因为一些动态属性将根据运行时数据填充。我编写的代码试图准确地复制这个组件:

UIInput input = new InputText();

AjaxBehavior ajax = new AjaxBehavior();
ajax.setAsync(true);
ajax.setUpdate("customerName, customerNameMsg");
input.addClientBehavior("blur", ajax);
input.setId("customerName");
input.setValueExpression("value", expressionFactory.createValueExpression(elContext, "#{editCustomerBean.name}", String.class));

当我以这种方式生成此组件时,我看到在 blur 事件中向服务器发送了一个请求,但没有进行验证。发布的请求看起来与我在 xhtml 中指定组件时发送的请求相同:

javax.faces.partial.ajax=true&javax.faces.source=mainForm%3AcustomerName&javax.faces.partial.execute=mainForm%3AcustomerName&javax.faces.partial.render=mainForm%3AcustomerName+mainForm%3AcustomerNameMsg&javax.faces.behavior.event=blur&javax.faces.partial.event=blur&mainForm%3AcustomerName=&javax.faces.ViewState=8176624577669857830%3A-4154840965136338204

我在这个网站和 Primefaces 论坛上看到过类似的问题,但它通常涉及将侦听器方法附加到 AjaxBehavior,这不是我在这里想要做的。我希望行为与未指定侦听器时的标记相同,即验证字段。

4

2 回答 2

2

动态添加 onBlur 事件示例

   Message message=new Message();
    message.setId("msg");
    InputText it = new InputText();
    it.setId("input1");
    it.setRequired(true);
    message.setFor(it.getId());

    //******Setting validation render at onBlur event
    AjaxBehavior ajaxBehavior=new AjaxBehavior();
    ajaxBehavior.setAsync(true);
    ajaxBehavior.setUpdate(message.getId());
    it.addClientBehavior("blur", ajaxBehavior);
    //************************************************
于 2013-04-15T11:58:34.917 回答
1

原来我在看 ajax 组件时叫错了树。我今天意识到我的组件在提交时也没有得到验证。事实证明,当您动态创建 JSF 组件时,您需要手动向组件注册 BeanValidator。感谢 victor herrera 对这个问题的回答:https ://stackoverflow.com/a/7055586/1535568

于 2012-10-12T14:37:24.703 回答