frankgiordano / PlatformTracker

A rudimentary helpdesk type application.
3 stars 0 forks source link

Limit textarea fields input by what they are defined at the backend database level. #190

Closed frankgiordano closed 3 years ago

frankgiordano commented 3 years ago

You can type in more characters than what the field can hold as defined in the database and this may result in a save failure. Lets avoid this and use html maxlength variable to limit the field input so you cannot overflow the defined amount of characters.

frankgiordano commented 3 years ago

See create.html for product it uses ng-maxlength. Check what technique to use or a mixture of both..

frankgiordano commented 3 years ago

done.