Dear,
I need setup for one igTextEditor which should accept only uppercase letters and numbers (min 7 character).
Do you have examples or can you write code for this?
Br Sergej
Thank you , it's working fine for me .
Hello Sergej,
Does validation meet your requirements? Please let me know if I may be of any further help.
For this behavior I'd recommend using client-side validation. You can set up a minLength and use a regular expression to make sure that a user only puts in the characters you want them to. In addition, you can set toUpper on the editor so that the user automatically is only putting in upper case characters. I've create a small jsFiddle to demonstrate this approach for you:
http://jsfiddle.net/n2sqa01z/
This way you can also have an error message that displays when they put in an invalid character so they know exactly what they need to fix in the input. Please let me know if you have any questions or concerns about this approach.