From 4538f3801a8aa7b59f2bb2c3af9d8deca363e1e5 Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 16 Dec 2014 20:23:17 +0000 Subject: [PATCH] ArrayEditable: pass format option --- source/UI/js/Form/ArrayEditable.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/UI/js/Form/ArrayEditable.js b/source/UI/js/Form/ArrayEditable.js index 7798f6c0..acf5954c 100644 --- a/source/UI/js/Form/ArrayEditable.js +++ b/source/UI/js/Form/ArrayEditable.js @@ -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,