I have a select control that I want to disable dynamically based on a condition:
this.activityForm = this.formBuilder.group({ docType: [{ value: \'2\', disable
you can use ternary operator here to disable form control conditionally.
this.activityForm = this.formBuilder.group({ docType: [{ value: '2', disabled: this.activeCategory != 'document' ? true : false }, Validators.required] });