How to implement form events

Comparing #9 with #10

Content

[...]
JS;

$this->registerJs($js);

```

 
When using `return false` to prevent submission, there is no need to use ` e.preventDefault()` on the `submit` event:
 
 
 
```php 
<?php
 
$js = <<<JS
 
// get the form id and set the event
 
$('form#{$model->formName()}').on('beforeSubmit', function(e) {
 
    // return false to prevent submission
 
    return false;
 
}).on('submit', function(e){    // can be omitted
 
    e.preventDefault();         // can be omitted
 
});
 
JS;
 
 
 
$this->registerJs($js);
 
 
```
 
 
> [![2amigOS!](http://www.gravatar.com/avatar/55363394d72945ff7ed312556ec041e0.png)](http://www.2amigos.us) <i>web development has never been so fun</i> [www.2amigos.us](http://www.2amigos.us)