Level 1
Level 2
Sign in to Community
Learn more
Sign in to view all badges
Expand my Community achievements bar.
I creating a form with Livecycle. I would like to convert lower case to upper case. How can I do that?
Solved! Go to Solution.
Hi,
Include the following script in the exit event of the field:
// convert to upper caseif (this.rawValue !== null){ this.rawValue = this.rawValue.toUpperCase();}
// convert to upper case
if (this.rawValue !== null)
{
this.rawValue = this.rawValue.toUpperCase();
}
Hope that helps,
Niall
Assure Dynamics
View solution in original post
Awesome, thank you:)
Views
Likes
Replies