Open
Description
Bug, feature request, or proposal:
Proposal
What is the expected behavior?
Working MatFormField
guide
What is the current behavior?
disabled
state not working
What are the steps to reproduce?
Implement a custom MatFormfield
via Creating a custom form field control
Is there anything else we should know?
Please add the following snippet to Creating a custom form field control#ngControl
// implements ControlValueAccessor.setDisabledState
setDisabledState(isDisabled: boolean): void {
this.disabled = isDisabled;
}