3

我正在处理一个巨大的 JSF 项目,对于这个问题,我缩短了最重要的部分,以便理解。事情是,用户必须填写一个注册表单,在这种情况下要求其身份(身份)并单击“完成注册”按钮调用一个请求注册确认的 javascript 函数,以便通过 commandButton 发送表单并显示一个“cargando”($cargando)模式。一旦请求到达服务器,用户就会注册并执行 r_registrar javascript 函数,该函数将隐藏“cargando”($cargando)模式。

我的问题是,如果用户不写它的标识(identificacion),则不会调用来自 bean 的函数 registrar(),因此。它不会执行 javascript 函数 r_registrar,因此,“cargando”模式不会隐藏。

我希望我能确定发送的表格中是否有任何错误。万一出现错误,我希望隐藏“cargando”模式。

非常感谢。

Codigo XHTML:

    <h:form id="formRegistrar">
        <h:panelGroup id = "pg_Registrar">

            <h:outputLabel class="output" id="outputIdentificacion" for="inputIdentificacion" value="Identificación"/>
            <b:inputText class="input" id="inputIdentificacion" type="text" required="true" value="#{beanUsuario.usuarioSesion.identificacion}"/>
            <div class="alert alert-danger"><h:message for="inputIdentificacion"/></div>

            <b:commandButton id = "btnRegistrar" binding="#{beanUsuario.btnRegistrar}" style="display:none" class="btnRegistrar" value="" action="#{beanUsuario.registrar}">
                <f:ajax execute="pg_Registrar" render="pg_Registrar"/>
            </b:commandButton>
            <b:button value="Completar registro" class="btn btn-primary" onclick="registrar(); return false;"/>

        </h:panelGroup>
    </h:form>

科迪戈豆(java):

public void registrar(){
    try{
        bd_insertarUsuario(this.usuarioSesion);
    }catch(Exception e){
        //...
    }finally{
        RequestContext.getCurrentInstance().execute("r_registrar()");
    }
}

Codigo JavaScript:

var $cargando = $('<div class="modal fade" data-backdrop="static" data-keyboard="false" tabindex="-1" role="dialog" aria-hidden="true" style="padding-top:15%; overflow-y:visible;"><div class="modal-dialog modal-m"><div class="modal-content"><div class="modal-header"><h3 style="margin:0;">Cargando</h3></div><div class="modal-body"><img width = "100%" class = "center-block" src = "../resources/imgs/loading.gif"/></div></div></div></div></div>');

function mostrarCargando() {
    $cargando.modal();
}

function ocultarCargando() {
    $cargando.modal('hide');
}


function registrar(){
    var c = confirm("seguro?");
    if(c){
            $(".btnRegistrar").click();
            setTimeout(mostrarCargando,100);
    }
}

function r_registrar(){
    ocultarCargando();
}
4

1 回答 1

0

可能最简单的解决方案是删除required属性并在您的 Java 方法中检查它。这样,JSF 不会阻止发送表单,即使输入无效,您也可以调用 JavaScript 方法。

如果我没听错的话,无论输入是什么样的,你都想关闭模式对话框。所以另一种选择是在调用后端 bean 方法之前关闭模态对话框:

    <b:commandButton id = "btnRegistrar" binding="#{beanUsuario.btnRegistrar}" style="display:none" class="btnRegistrar" value="" 
    onclick="ocultarCargando();ajax:beanUsuario.registrar()"
    process="pg_Registrar" update="pg_Registrar">
        </b:commandButton>

顺便说一句,我建议不要混合 BootsFacesb:commandButtonf:ajaxfacet。我已经为 BootsFaces 添加了向后兼容性,但这很痛苦,所以我不知道是否f:ajax总是能正常工作。

于 2016-09-05T21:16:41.337 回答