Expand my Community achievements bar.

Forced Caps in Designer?

Avatar

Former Community Member
Sorry. Newbie question again.



I'm designing a form where a user is required to type in their details, preferably in capital alphabets.



Is there a way of forcing the alphabets into capital form?
1 Reply

Avatar

Former Community Member
Hi Jamie,

I do not know how to validate, but you can convert the value entered to capital by FormCalc. On the exit method of the field you can write

this.rawValue = Upper(this.rawValue) to convert to uppercase.

Hope it helps,



Asiye