#967 rework container model structure

- now FormFieldModel provides information about columns and child fields
- greatly simplified models
- visibility engine fixes
This commit is contained in:
Denys Vuika
2016-11-15 15:13:05 +00:00
committed by Mario Romano
parent e114534bc5
commit ee56a1faa6
17 changed files with 97 additions and 135 deletions

View File

@@ -37,7 +37,7 @@ export class ContainerWidget extends WidgetComponent implements OnInit, AfterVie
ngOnInit() {
if (this.field) {
this.content = new ContainerWidgetModel(this.field.form, this.field.json);
this.content = new ContainerWidgetModel(this.field);
}
}