You can add a regular expression in a textbox field in Episerver Forms. So just create the pattern you want that only support lowercase without characters and add it in there as shown below
Thanks much for your response, Scott.
I am quite new to this and not sure about this fully, Could you please help me to create regualr expression for this lower case & Non special charater or else if any example of making this regular expression validator can help.
thanks in advanced.
Regards
Deep
Something like this?
^[a-z ]*$
And if you don't want to allow space:
^[a-z]*$
Hello,
I think its working correctly with above suggested pattern and allowing only small charater not capital.
But something wrong with special charater format, Above suggested one also works for special charaters? As I need to get Special characters skip in same field also.
Thanks in advanced.
Regards
Deep
Dear Experts,
If I need to create a lowercase specific field form in which special charaters are not allowed. Please suggest if this is possible in Episerver CMS.
If yes, via Editor studio or via code level changes?
Thanks in Advanced
Regards
Deep