File

src/ng-xform/ng-xform-group.ts

Extends

FormGroup

Index

Methods

Methods

patchValue
patchValue(value: literal type, options?: literal type)
Parameters :
Name Type Optional Description
value literal type
options literal type true
Returns : void
import { FormGroup } from '@angular/forms';

export class NgXformGroup extends FormGroup {

  patchValue(value: {
    [key: string]: any;
  }, options?: {
    onlySelf?: boolean;
    emitEvent?: boolean;
  }): void {
    super.patchValue(value || {}, options);
  }
}

results matching ""

    No results matching ""