Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

ng-maxlength validator does not respect/allow negative values #9995

Closed
petejohanson opened this issue Nov 11, 2014 · 3 comments
Closed

ng-maxlength validator does not respect/allow negative values #9995

petejohanson opened this issue Nov 11, 2014 · 3 comments

Comments

@petejohanson
Copy link

The standard maxlength attribute on <input> allows specifying a negative value to provide the default behaviour (i.e. unlimited length). For using a databound/dynamic value for ng-maxlength, I need the ability to allow an unlimited length as an option. However, with the current code, if you add an ng-maxlength attribute the only way to allow an unlimited length is to default it to some hardcoded very large value.

Ideally, I could do:

<input type="text" ng-maxlength="{{validation.maxlength || -1}}"></input>

And have it work as expected. Currently, with 1.3.1, this results in an invalid input regardless of the length.

@Narretz
Copy link
Contributor

Narretz commented Nov 11, 2014

We should evaluate this again once we have fixed the current bugs / regressions with input et. al.

gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 11, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
@gkalpak
Copy link
Member

gkalpak commented Nov 11, 2014

#9998 addresses both #9874 and #9995.

gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 11, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
@petejohanson
Copy link
Author

@gkalpak Thanks, that looks like it bring things inline w/ my expectations.

gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 11, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 11, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 11, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 12, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 13, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 14, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 18, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 19, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
gkalpak added a commit to gkalpak/angular.js that referenced this issue Nov 21, 2014
Previously, setting the maxlength to a negative number, would make all
input values invalid (since their length should be less than maxlength,
which is impossible).
This commit changes the behaviour of maxlength/ngMaxlength, effectively
disabling the maxlength validation (always returning true) when maxlength
is set to a negative number. This is more inline to how the HTML5
`maxlength` attribute works (both in browsers and according to the spec:
http://dev.w3.org/html5/spec-preview/attributes-common-to-form-controls.html#attr-fe-maxlength).

Related to angular#9874
Closes angular#9995
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants