Is there a way to make the entire Angular form read only and then editable when clicking edit?
This is how i do it, i create a css class using pointer-events, pointer-events: none prevents click, state or cursor options so:
.formdisabled
{
pointer-events: none;
opacity: 0.8;
}
Then in view i use ng-class on form like this:
In view add button to play with the disableForm:
Show/Hide Form
Change opacity value if needed.