fix adding input with value

This commit is contained in:
j 2015-02-13 11:05:46 +00:00
parent 50f41fe0c4
commit e97b4ee922

View file

@ -85,6 +85,9 @@ Ox.ArrayInput = function(options, self) {
}
})
.appendTo(self.$element[index]));
if (value) {
self.$input[index].options({value: value})
}
if (focus && self.$input[index].focusInput) {
self.$input[index].focusInput(true);
}