Expand my Community achievements bar.

SOLVED

How I can force for capital letters

Avatar

Level 3

I creating a form with Livecycle. I would like to convert lower case to upper case. How can I do that?

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

Include the following script in the exit event of the field:

// convert to upper case

if (this.rawValue !== null)

{

     this.rawValue = this.rawValue.toUpperCase();

}

Hope that helps,

Niall

Assure Dynamics

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Hi,

Include the following script in the exit event of the field:

// convert to upper case

if (this.rawValue !== null)

{

     this.rawValue = this.rawValue.toUpperCase();

}

Hope that helps,

Niall

Assure Dynamics