diff --git a/source/Ox.UI/js/Form/FormElementGroup.js b/source/Ox.UI/js/Form/FormElementGroup.js index 48010a94..a87af1ae 100644 --- a/source/Ox.UI/js/Form/FormElementGroup.js +++ b/source/Ox.UI/js/Form/FormElementGroup.js @@ -50,7 +50,7 @@ Ox.FormElementGroup = function(options, self) { that.triggerEvent({autovalidate: data}); }, change: change, - submit: change, + //submit: change, validate: function(data) { that.triggerEvent({validate: data}); } @@ -60,9 +60,7 @@ Ox.FormElementGroup = function(options, self) { function change(data) { self.options.value = getValue(); - that.triggerEvent('change', { - value: self.options.value - }); + that.triggerEvent('change', {value: self.options.value}); } /*