From 7a0eb13be4141be94a333b946d6f73eb55468c70 Mon Sep 17 00:00:00 2001 From: jlukic Date: Tue, 2 Dec 2014 17:11:49 -0500 Subject: [PATCH] Fix #1303 Dropdown does not update with form validation --- src/definitions/behaviors/form.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/definitions/behaviors/form.js b/src/definitions/behaviors/form.js index 63ca17312..e43da2be5 100644 --- a/src/definitions/behaviors/form.js +++ b/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 {