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({ .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,