1
0
Fork 0
forked from 0x2620/oxjs

add 'unformat' option to editables

This commit is contained in:
rolux 2014-12-16 20:38:41 +00:00
commit e43881c594
3 changed files with 8 additions and 3 deletions

View file

@ -41,6 +41,7 @@ Ox.ArrayEditable = function(options, self) {
submitOnBlur: true,
tooltipText: '',
type: 'input',
unformat: null,
width: 256
})
.options(options || {})
@ -185,6 +186,7 @@ Ox.ArrayEditable = function(options, self) {
: ''
),
type: self.options.type,
unformat: self.options.unformat,
value: item.value,
width: self.options.type == 'input' ? 0 : self.options.width - 9
})