Fórum

aui:form and onsubmit issue

thumbnail
William Gosse, modificado 11 Anos atrás.

aui:form and onsubmit issue

Liferay Master Postagens: 533 Data de Entrada: 04/07/10 Postagens Recentes
When I add an onsubmit to my aui:form tag it doesn't seem to prevent the submission even the javscript that's called is returning false.

I even tried just having onSubmit="return fales;" in the aui:form tag which didn't stop the submission as well.

I'm trying to add this to the standard login.jsp.

Is there something special about how aui:form handles onsubmits?
thumbnail
William Gosse, modificado 11 Anos atrás.

SOLVED: aui:form and onsubmit issue

Liferay Master Postagens: 533 Data de Entrada: 04/07/10 Postagens Recentes
I got this to work by moving my javascript call to the onclick on the submit button.
daddy 32, modificado 9 Anos atrás.

RE: SOLVED: aui:form and onsubmit issue

New Member Mensagem: 1 Data de Entrada: 09/12/13 Postagens Recentes
William Gosse:
I got this to work by moving my javascript call to the onclick on the submit button.


But that's not a solution - what happens when user submits the form by pressing enter?
Brijesh Desai, modificado 8 Anos atrás.

RE: SOLVED: aui:form and onsubmit issue

Junior Member Postagens: 55 Data de Entrada: 22/10/14 Postagens Recentes
We were struggling with same to return false from js method which is called from onSubmit of form.

AUI form , onSubmit= "return false;" doesn't work.

Work around is put following on your aui form.
<aui:form id="setup-property-fm" onSubmit="event.preventDefault(); addproperty();" </aui:form>

event.preventDefault() is working and validated.

Thanks,
Brijesh D
Abdur rasheed, modificado 8 Anos atrás.

RE: aui:form and onsubmit issue

Junior Member Postagens: 71 Data de Entrada: 26/09/08 Postagens Recentes
Hi ,
Check your script whether it is loading or not.
Brijesh Desai, modificado 8 Anos atrás.

RE: aui:form and onsubmit issue

Junior Member Postagens: 55 Data de Entrada: 22/10/14 Postagens Recentes
Abdur rasheed:
Hi ,
Check your script whether it is loading or not.



Yes, it is loading and working as expected and validated.