You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Implement the ability to write a generic ng-message in the ng-messages-include html that would reference min/max attributes of the referred input.
Something like:
The value must be in range {{ field.min }} to {{ field.max }}.
The text was updated successfully, but these errors were encountered:
You should be able to interpolate your messages, so isn't this technically already possible? The trouble with building this into ngMessages, is that the min/max minlength/maxlength validators don't really record that data anywhere --- they record it locally only. I think it would make a mess of things to change that.
Implement the ability to write a generic ng-message in the ng-messages-include html that would reference min/max attributes of the referred input.
Something like:
The value must be in range {{ field.min }} to {{ field.max }}.
The text was updated successfully, but these errors were encountered: