For example, if you implement the 'onclick' event for a submit button, then it will no longer execute the 'onsubmit' action, because it assumes that you want to implement the action yourself.
If you still want to enable default behavior for an event then follow these steps:
1) Add the same event again and select action -> run javascript.
2) In the JavaScript field enter:
Code: Select all
return true;