Expand my Community achievements bar.

Is there a way to set up my response table to populate text as proper, upper, or lower text?

Avatar

Level 2

I have a number of event registration forms set up and open for responses. I know that the form fields do not allow for the ability to set up upon data entry for text to be proper, upper, or lower case. However, is there a way to set up the response table columns to convert to the desired case?

3 Replies

Avatar

Level 9

Yes, it's possible. But how you gonna do it? The user has to enter the value after that you need to convert it to uppercase/lowercase? Or it will be done after the data get populated via a data source?

Thanks,

Bibhu.

Avatar

Level 2

The user enters the data and I would like to have the response table show the appropriate case.

Avatar

Level 9

Then write the following script, in the exit event of the TextField.

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

Thanks,

Bibhu.