在richfaces中不调用事件

时间:2010-09-28 12:07:35

标签: java jsf richfaces

(ps:对不起我的英语)

我的应用程序中有一个文本字段,对于这个文本字段,我有一个a4j:支持应该在onchange事件上工作!所以我有相同的表格包含和更新。 用户用代码填充文本字段,在我的bean中,我有一个搜索等效组合框的方法,如果该值存在,则将其设置为我的bean的对象,这适用于包括但不适用于更新!我不知道这可能是什么。我会发布代码。

我的xhtml页面

<ui:decorate template="../templates/edit.xhtml">
                    <ui:param name="idComponente" value="codTipoVinculo" />
                    <ui:define name="label">Tipo Vínculo: </ui:define>
                    <h:inputText id="codTipoVinculo"
                        value="#{cadastroPrestadorBean.codTipoVinculo}"
                        size="4" maxlength="1"
                        styleClass="#{validationUtil.invalid('codTipoVinculo', facesContext) ? 'invalido' : ''}"
                        onkeypress="return(soEntraNumero(event,this));" 
                        onmouseout="soArrastaNumero(this);" 
                        onblur="soArrastaNumero(this);">
                        <a4j:support event="onchange" 
                                     action="#{cadastroPrestadorBean.findByKey(cadastroPrestadorBean.prestador.tipoVinculo)}"
                                     ajaxSingle="true"
                                     immediate="true"
                                     focus="codTipoPgtoMatmed"
                                     reRender="nomeTipoVinculo, codTipoVinculo, outputMessagesInForm">
                            <a4j:actionparam noEscape="true"
                                value="(document.getElementById('formPrestador:codTipoVinculo').value == '' ? '-11111' : document.getElementById('formPrestador:codTipoVinculo').value)"
                                assignTo="#{cadastroPrestadorBean.codTipoVinculo}" />                                                        
                        </a4j:support>
                    </h:inputText>
                    <rich:comboBox enableManualInput="false"  defaultLabel="Selecione uma opção" id="nomeTipoVinculo"
                        value="#{cadastroPrestadorBean.prestador.tipoVinculo}"
                        converter="simpleIndexConverterTipoVinculo">
                        <f:selectItems
                            value="#{cadastroPrestadorBean.listaTipoVinculo }" />
                        <a4j:support event="onchange" reRender="codTipoVinculo, outputMessagesInForm"
                            ajaxSingle="true" limitToList="true"
                            action="#{cadastroPrestadorBean.findByKey(cadastroPrestadorBean.prestador.tipoVinculo)}" />
                    </rich:comboBox>
                </ui:decorate>

我的bean方法

if (object instanceof TipoVinculo) {
            if ( codTipoVinculo == null || codTipoVinculo == -11111) {
                prestador.setTipoVinculo(new TipoVinculo());
                return;
            }
            for (SelectItem element : listItemsTipoVinculo) {
                if ( ( ((TipoVinculo)element.getValue()).getCodTipoVinculo().intValue() ) == codTipoVinculo ){
                    prestador.setTipoVinculo((TipoVinculo)BeanUtils.cloneBean(element.getValue()));
                    achou = true;
                }
            }
            if ( !achou ){
                prestador.setTipoVinculo(new TipoVinculo());
                addMessageInfo("Tipo Vínculo inválido.");
            }
            achou = false;
        }

这是填充listItemsTipoVinculo

的方法
    public List<SelectItem> getListaTipoVinculo() {
    try {
        if ( listItemsTipoVinculo.size() == 0 ){
            List<TipoVinculo> list = tipoVinculoBusiness.listaTiposVinculos();
            for (TipoVinculo item : list) {
                listItemsTipoVinculo.add(new SelectItem(item));
            }
        }
    } catch (CommonBusinessException e) {
        addMessageError(e);
    }
    return listItemsTipoVinculo;
}

组合框先前已在listItemsTipoVinculo中填充,因此当页面开始时我已填充它。当用户将代码放在文本字段中时,它应该调用findbykey方法,但它们不会!当我的对象'prestador'被填充时,就在我的更新屏幕中。

1 个答案:

答案 0 :(得分:1)

好吧,我发现了发生了什么...... 问题出在我的Inclusion表单中,我将所有对象设置为新实例,并且只更新那些在数据库中具有值的对象...

所以我只是检查bean是否该字段为null然后创建一个新实例!

if ( prestador.getTipoVinculo()==null ){
    prestador.setTipoVinculo(new TipoVinculo());
}

解决我的问题...... 感谢所有阅读此内容的人!