Foros de discusión

aui:form and onsubmit issue

thumbnail
William Gosse, modificado hace 11 años.

aui:form and onsubmit issue

Liferay Master Mensajes: 533 Fecha de incorporación: 4/07/10 Mensajes recientes
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 hace 11 años.

SOLVED: aui:form and onsubmit issue

Liferay Master Mensajes: 533 Fecha de incorporación: 4/07/10 Mensajes recientes
I got this to work by moving my javascript call to the onclick on the submit button.
daddy 32, modificado hace 9 años.

RE: SOLVED: aui:form and onsubmit issue

New Member Mensaje: 1 Fecha de incorporación: 9/12/13 Mensajes recientes
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 hace 8 años.

RE: SOLVED: aui:form and onsubmit issue

Junior Member Mensajes: 55 Fecha de incorporación: 22/10/14 Mensajes recientes
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 hace 8 años.

RE: aui:form and onsubmit issue

Junior Member Mensajes: 71 Fecha de incorporación: 26/09/08 Mensajes recientes
Hi ,
Check your script whether it is loading or not.
Brijesh Desai, modificado hace 8 años.

RE: aui:form and onsubmit issue

Junior Member Mensajes: 55 Fecha de incorporación: 22/10/14 Mensajes recientes
Abdur rasheed:
Hi ,
Check your script whether it is loading or not.



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