留言板

aui:form and onsubmit issue

thumbnail
William Gosse,修改在11 年前。

aui:form and onsubmit issue

Liferay Master 帖子: 533 加入日期: 10-7-4 最近的帖子
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,修改在11 年前。

SOLVED: aui:form and onsubmit issue

Liferay Master 帖子: 533 加入日期: 10-7-4 最近的帖子
I got this to work by moving my javascript call to the onclick on the submit button.
daddy 32,修改在9 年前。

RE: SOLVED: aui:form and onsubmit issue

New Member 发布: 1 加入日期: 13-12-9 最近的帖子
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,修改在8 年前。

RE: SOLVED: aui:form and onsubmit issue

Junior Member 帖子: 55 加入日期: 14-10-22 最近的帖子
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,修改在8 年前。

RE: aui:form and onsubmit issue

Junior Member 帖子: 71 加入日期: 08-9-26 最近的帖子
Hi ,
Check your script whether it is loading or not.
Brijesh Desai,修改在8 年前。

RE: aui:form and onsubmit issue

Junior Member 帖子: 55 加入日期: 14-10-22 最近的帖子
Abdur rasheed:
Hi ,
Check your script whether it is loading or not.



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