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.
In one of my projects, I have an input to hold a maximum number of users. It can contain a maximum of 6 character also.
So I added an input as shown below
input type="text" class="form-control" id="usercount" name="usercount" ng-model="organization.MaxNoOfUsers" maxlength="6"
The model is fetched from an API which will return the value as integer like MaxNoOfUser = 45.
In the controller, this is done with code similar to $scope.organization = { MaxNoOfUsers : 45}.
When this assignment was done, the input validation was failing with 'invalid-maxlength'.
After spending some time on it, I tried to alter the model type to string in the controller with some code as below
var noofUsers = " " + data.MaxNoOfUsers + " ";
$scope.organization = { MaxNoOfUsers : noofUsers }.
This code resolved the issue and the input is no more shows invalid-maxlength.
The text was updated successfully, but these errors were encountered:
In one of my projects, I have an input to hold a maximum number of users. It can contain a maximum of 6 character also.
So I added an input as shown below
input type="text" class="form-control" id="usercount" name="usercount" ng-model="organization.MaxNoOfUsers" maxlength="6"
The model is fetched from an API which will return the value as integer like MaxNoOfUser = 45.
In the controller, this is done with code similar to $scope.organization = { MaxNoOfUsers : 45}.
When this assignment was done, the input validation was failing with 'invalid-maxlength'.
After spending some time on it, I tried to alter the model type to string in the controller with some code as below
var noofUsers = " " + data.MaxNoOfUsers + " ";
$scope.organization = { MaxNoOfUsers : noofUsers }.
This code resolved the issue and the input is no more shows invalid-maxlength.
The text was updated successfully, but these errors were encountered: