I am attempting to postpone the validation of a custom textbox component. My goal is to only validate the input when it loses focus. The current component does not employ ng-model within the input itself, but instead utilizes the ngModelController in the controller of the custom component like this:
<input type="text" name="name" ng-required="true"/>
Is it possible to still utilize ng-model-options with onblur to delay the connection between the template and the controller?
If I am using ngModelController inside the component's controller without using ng-model within the input element, is there a way to use ng-model-options to delay input binding? Or perhaps there is another clever approach to achieve this?