You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After hours of finding where the problem is I found possible solution. The problem is in this condition in js/texyla.js
if(f.onsubmit()){submitnout();}
What doesn't work (if validation Nette JavaScript succeeds f.onsubmit() doesn't return true, only undefined if you force the get value) so it only returns false if validation fails. The correct solution should be:
After hours of finding where the problem is I found possible solution. The problem is in this condition in
js/texyla.js
What doesn't work (if validation Nette JavaScript succeeds
f.onsubmit()
doesn't returntrue
, onlyundefined
if you force the get value) so it only returnsfalse
if validation fails. The correct solution should be:More in this topic on Nette forums: http://forum.nette.org/cs/20728-texyla-submit-nic-nerobi#p142301
The text was updated successfully, but these errors were encountered: