Browse Source

Fix #1303 Dropdown does not update with form validation

pull/1378/head
jlukic 10 years ago
parent
commit
7a0eb13be4
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/behaviors/form.js

2
src/definitions/behaviors/form.js

@ -208,7 +208,7 @@ $.fn.form = function(fields, parameters) {
get: {
changeEvent: function(type) {
if(type == 'checkbox' || type == 'radio') {
if(type == 'checkbox' || type == 'radio' || type == 'hidden') {
return 'change';
}
else {

Loading…
Cancel
Save