From 0800fd8f37c75e5416d80727a06fad2d1c07d4f4 Mon Sep 17 00:00:00 2001 From: rolux Date: Fri, 8 Mar 2013 16:56:47 +0530 Subject: [PATCH] fix a bug in array editable --- source/Ox.UI/js/Form/ArrayEditable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Ox.UI/js/Form/ArrayEditable.js b/source/Ox.UI/js/Form/ArrayEditable.js index e081e4a4..0630db45 100644 --- a/source/Ox.UI/js/Form/ArrayEditable.js +++ b/source/Ox.UI/js/Form/ArrayEditable.js @@ -56,7 +56,7 @@ Ox.ArrayEditable = function(options, self) { }, placeholder: function() { if (self.options.items.length == 0) { - self.$items[0].options({placeholder: self.options.placeholder}); + self.$items[0].options({value: self.options.placeholder}); } }, selected: function() {