I already tried to follow the example of other answers from here and I did not succeed!
I created a reactive form (ie, dynamic) and I want to disable some fields at
The disabling FormControl prevents it to be present in a form while saving. You can just set it the readonly property.
disabling
prevents
saving
readonly
And you can achieve it this way :
HTML :
TS :
this.disbaleSelect = true;
Found this here