1
0
Fork 0
forked from 0x2620/oxjs

in input elements, disable showing the autocomplete menu on focus

This commit is contained in:
rlx 2011-11-11 11:48:52 +00:00
commit 571e3a3512
3 changed files with 22 additions and 14 deletions

View file

@ -45,6 +45,9 @@ Ox.FormElementGroup = function(options, self) {
change: function(data) {
that.triggerEvent({change: {value: that.value()}});
},
submit: function(data) {
that.triggerEvent({change: {value: that.value()}});
},
validate: function(data) {
that.triggerEvent({validate: data});
}