Answers for "angular pristine vs dirty vs touched"

2

angular forms dirty vs pristine vs touched vs untouched vs valid vs invalid

According to angular 6+,
- valid: This property returns true if the element’s contents are valid and false otherwise.
- invalid: This property returns true if the element’s contents are invalid and false otherwise.
= pristine: This property returns true if the element’s contents have not been changed.
- dirty: This property returns true if the element’s contents have been changed.
- untouched: This property returns true if the user has not visited the element.
- touched: This property returns true if the user has visited the element.
Posted by: Guest on July-02-2021

Code answers related to "angular pristine vs dirty vs touched"

Browse Popular Code Answers by Language