Skip to content

Commit

Permalink
* (Fixes issue 492) Enhanced form submit script so that it respects t…
Browse files Browse the repository at this point in the history
…o existing submit event handlers
  • Loading branch information
qiang.xue committed Aug 6, 2009
1 parent 67d50c7 commit aa82819
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG
Expand Up @@ -16,6 +16,7 @@ Version 1.0.8 To be released
- New #425: Added defaultParams option to the rules used by CUrlManager (Qiang)
- New #436: Added error templates in Russian (idlesign)
- New #467: Improved the algorithm for determining script URL by CHttpRequest (Qiang)
- New #492: Enhanced form submit script so that it respects to existing submit event handlers (Qiang)
- New #493: Added call stack information to log when a PHP error occurs (Qiang)
- New: CDbCommand::bindParam() and bindValue() now return the command object so that they can be used in a chainable fashion (Qiang)
- New: Added thead and tbody to the code generated by crud command (Qiang)
Expand Down
2 changes: 1 addition & 1 deletion framework/web/js/source/jquery.yii.js
Expand Up @@ -34,7 +34,7 @@ $.yii = {
inputs.push(input);
});

f.submit();
f.trigger('submit');

for (input in inputs) {
f.removeChild(inputs[input]);
Expand Down

0 comments on commit aa82819

Please sign in to comment.