How to use the @ng-dynamic-forms/core.DynamicCheckboxGroupModel function in @ng-dynamic-forms/core

To help you get started, we’ve selected a few @ng-dynamic-forms/core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github udos86 / ng-dynamic-forms / packages / ui-kendo / src / checkbox-group / dynamic-kendo-checkbox-group.component.spec.ts View on Github external
describe("DynamicKendoCheckboxGroupComponent test suite", () => {

    let testModel = new DynamicCheckboxGroupModel({id: "checkboxGroup", group: []}),
        formModel = [testModel],
        formGroup: FormGroup,
        fixture: ComponentFixture,
        component: DynamicKendoCheckboxGroupComponent,
        debugElement: DebugElement,
        testElement: DebugElement;

    beforeEach(async(() => {

        TestBed.configureTestingModule({

            imports: [
                ReactiveFormsModule,
                NoopAnimationsModule,
                TextMaskModule,
                DynamicFormsCoreModule
github udos86 / ng-dynamic-forms / projects / ng-dynamic-forms / ui-ngx-bootstrap / src / lib / checkbox-group / dynamic-ngx-bootstrap-checkbox-group.component.spec.ts View on Github external
describe("DynamicNGxBootstrapCheckboxGroupComponent test suite", () => {

    let testModel = new DynamicCheckboxGroupModel({id: "checkboxGroup", group: []}),
        formModel = [testModel],
        formGroup: FormGroup,
        fixture: ComponentFixture,
        component: DynamicNGxBootstrapCheckboxGroupComponent,
        debugElement: DebugElement,
        testElement: DebugElement;

    beforeEach(async(() => {

        TestBed.configureTestingModule({

            imports: [
                ReactiveFormsModule,
                NoopAnimationsModule,
                TextMaskModule,
                ButtonsModule,
github udos86 / ng-dynamic-forms / packages / ui-ng-bootstrap / src / checkbox-group / dynamic-ng-bootstrap-checkbox-group.component.spec.ts View on Github external
describe("DynamicNGBootstrapCheckboxGroupComponent test suite", () => {

    let testModel = new DynamicCheckboxGroupModel({id: "checkboxGroup", group: []}),
        formModel = [testModel],
        formGroup: FormGroup,
        fixture: ComponentFixture,
        component: DynamicNGBootstrapCheckboxGroupComponent,
        debugElement: DebugElement,
        testElement: DebugElement;

    beforeEach(async(() => {

        TestBed.configureTestingModule({

            imports: [
                ReactiveFormsModule,
                NoopAnimationsModule,
                TextMaskModule,
                NgbButtonsModule,