ArrayEditable: pass format option

This commit is contained in:
rolux 2014-12-16 20:23:17 +00:00
parent c5a02fc61d
commit 4538f3801a

View file

@ -26,6 +26,7 @@ Ox.ArrayEditable = function(options, self) {
.defaults({
clickLink: null,
editable: true,
format: null,
getSortValue: null,
globalAttributes: [],
highlight: '',
@ -167,6 +168,7 @@ Ox.ArrayEditable = function(options, self) {
clickLink: self.options.clickLink,
editable: self.options.editable && item.editable,
editing: self.editing && i == self.selected,
format: self.options.format,
globalAttributes: self.options.globalAttributes,
highlight: self.options.highlight,
maxHeight: self.options.maxHeight,