> For the complete documentation index, see [llms.txt](https://msk-satheesh-5599.gitbook.io/ng-mat-forms/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://msk-satheesh-5599.gitbook.io/ng-mat-forms/apis/setvalidator.md).

# setValidator

### Description

* Dynamically assign the validators to the fom control.
* parameters
  * formControlName
  * validators

### Example

```typescript
import { NgMatFormOptions, NgMatFormFields, NgMatFormService } from 'ng-mat-forms';

// other imports here...

export class MyTestApp {

    public ngMatFormsOptions: NgMatFormOptions = {
        column: 3
        // other options...
    };

    // Initialized a field list array which extended a field interface.
    public ngMatFormFields: NgMatFormFields[] = [{
        type: 'input',
        label: 'User Name',
        placeholder: 'Enter a User Name',
        formControlName: 'name'
        // other options...
    }];
    
    setValidator(): void {
        //this.ngMatFormService.setValidator(formControlName, validators);
        this.ngMatFormService.setValidator('name', [Validators.required]);
    }

    constructor(private ngMatFormService:NgMatFormService) {}
}
```
