Skip to content

Commit

Permalink
BUGFIX Trigger change event on hidden input in TreeDrodpownField.js
Browse files Browse the repository at this point in the history
  • Loading branch information
chillu committed May 11, 2012
1 parent 3fe743a commit 8e7d221
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/TreeDropdownField.js
Expand Up @@ -137,7 +137,7 @@
else this.loadTree(null, updateFn);
},
setValue: function(val) {
this.find(':input:hidden').val(val);
this.find(':input:hidden').val(val).trigger('change');
this.updateTitle();
this.trigger('change');
},
Expand Down

0 comments on commit 8e7d221

Please sign in to comment.