Added missing observableArray for dynamical Control loading

This commit is contained in:
Marc 2015-04-15 23:20:03 +02:00
parent f24475b996
commit c71b29b77e

View file

@ -140,7 +140,7 @@ $(function() {
}
if (control.hasOwnProperty("children")) {
control.children = self._processControls(control.children);
control.children = ko.observableArray(self._processControls(control.children));
if (!control.hasOwnProperty("layout") || !(control.layout == "vertical" || control.layout == "horizontal")) {
control.layout = "vertical";
}