Added missing observableArray for dynamical Control loading
This commit is contained in:
parent
f24475b996
commit
c71b29b77e
1 changed files with 1 additions and 1 deletions
|
|
@ -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";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue