ArrayEditable: pass format option
This commit is contained in:
parent
c5a02fc61d
commit
4538f3801a
1 changed files with 2 additions and 0 deletions
|
@ -26,6 +26,7 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
.defaults({
|
.defaults({
|
||||||
clickLink: null,
|
clickLink: null,
|
||||||
editable: true,
|
editable: true,
|
||||||
|
format: null,
|
||||||
getSortValue: null,
|
getSortValue: null,
|
||||||
globalAttributes: [],
|
globalAttributes: [],
|
||||||
highlight: '',
|
highlight: '',
|
||||||
|
@ -167,6 +168,7 @@ Ox.ArrayEditable = function(options, self) {
|
||||||
clickLink: self.options.clickLink,
|
clickLink: self.options.clickLink,
|
||||||
editable: self.options.editable && item.editable,
|
editable: self.options.editable && item.editable,
|
||||||
editing: self.editing && i == self.selected,
|
editing: self.editing && i == self.selected,
|
||||||
|
format: self.options.format,
|
||||||
globalAttributes: self.options.globalAttributes,
|
globalAttributes: self.options.globalAttributes,
|
||||||
highlight: self.options.highlight,
|
highlight: self.options.highlight,
|
||||||
maxHeight: self.options.maxHeight,
|
maxHeight: self.options.maxHeight,
|
||||||
|
|
Loading…
Reference in a new issue