Crow Canyon Software Forum

Forum Navigation
Please or Register to create posts and topics.

All fields UPPER

I have a requirement to make all values input into a field UPPER. Is there an action for formatting option that will allow for this or will I have to use some form of script?

 

Hi @kevin-dornsouthstatebank-com,

Please find steps to automatically change the entered value to upper case when focus moves out of the text control after user has entered the value.

Navigate to NITRO Forms designer for the list > Expand ‘Advanced’ section > Form Event Actions > Configure a FEA on column value change as shown below > Save settings > Publish the NITRO Forms.

Below is the script and the screenshots are attached:

Script used in the FEA:

var nameValue = _ccs_FormUI.fetchColumnValueUI("Name");

if(nameValue)

{

var upperVal = nameValue.toUpperCase();

return upperVal;

}

return nameValue;

Uploaded files:
  • UpperCase_1.png
  • UpperCase_2.png
  • UpperCase_3.png