Estou com esse erro “Too much recursion” quando tento fazer um form.submit no meu javascript.
Procurei por soluçoes e encontrei está:
According to a FAQ buried on the plugin page of Jquery I found that (quote); This results in a too-much-recursion error: $(form).submit() triggers another round of validation, resulting in another call to submitHandler, and voila, recursion. Replace that with form.submit(), which triggers the native submit event instead and not the validation.
Porem como utilizo netui nao consigo alterar para form.submit, segue o codigo que eu estou fazendo:
function acConsultarGrupo( )
{
document.forms[getNetuiTagName("form",this)][getNetuiTagName("actionJSP",this)].value = "acIrParaConsultarGrupo";
document.forms[getNetuiTagName("form",this)].submit();
}
Alguem teria alguma dica de como posso solucionar este problema?
Desde já obrigado.