Fix typeFiltering parameter

This commit is contained in:
mauriziovitale84
2016-10-25 18:03:28 +01:00
parent 5059436551
commit d58b2f4837
4 changed files with 20 additions and 6 deletions

View File

@@ -15,8 +15,9 @@
* limitations under the License.
*/
import { Component } from '@angular/core';
import { Component, ElementRef, Input } from '@angular/core';
import { WidgetComponent } from './../widget.component';
import { FormGroup } from '@angular/forms';
@Component({
moduleId: module.id,
@@ -25,8 +26,16 @@ import { WidgetComponent } from './../widget.component';
})
export class CheckboxWidget extends WidgetComponent {
constructor() {
@Input()
field: any;
@Input('group')
public formGroup: FormGroup;
@Input('controllerName')
public controllerName: string;
constructor(public elementRef: ElementRef) {
super();
}
}