1
0
Fork 0
forked from 0x2620/oxjs

update oxmedium theme button disabled color and gradient; fix setting value of an Ox.SelectInput

This commit is contained in:
rolux 2013-02-24 14:44:02 +05:30
commit 9c46e17b9f
2 changed files with 8 additions and 3 deletions

View file

@ -75,7 +75,12 @@ Ox.SelectInput = function(options, self) {
},
width: self.options.width
})
.update({value: setValue});
.update({
value: function() {
self.options.value = that.options('value');
setValue();
}
});
function getTitle() {
var value = self.$select ? self.$select.value() : self.options.value;