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

ng-maxlength not working for a variable #6952

Closed
jayanthakgjls opened this issue Apr 2, 2014 · 1 comment
Closed

ng-maxlength not working for a variable #6952

jayanthakgjls opened this issue Apr 2, 2014 · 1 comment

Comments

@jayanthakgjls
Copy link

I'm trying to use ng-maxLength directive to give a variable max-length for my inputs.

   <input type="text" ng-model="name" ng-maxlength="$metadata.maxLength" ng-required="$metadata.isRequired" name="name" /> 

But it doesn't seems to be working as expected. When it is applied the model binding for the same variable is not working. Here is my plunker http://plnkr.co/edit/NHNaswIIZqcdrOurYXVM?p=preview

If I remove ng-maxLength ng-required is going to work as expected , otherwise ng-required is also not working.

@caitp
Copy link
Contributor

caitp commented Apr 2, 2014

the input directive does not "parse" the ngMaxLength attribute, it only calls parseInt() on it, essentially. This is a duplicate of a number of other issues wanting various model attributes to be parsed as expressions, including #1405, #1199, and others that I'm having trouble finding right now.

I agree that this is probably an expected use case, and for numbers it probably would not break anything to "fix", but I'm not sure if it's really worthwhile most of the time.

Closing this so this can be continued on existing issues

@caitp caitp closed this as completed Apr 2, 2014
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants