Crow Canyon Software Forum
All fields UPPER
Quote from Kevin D on March 19, 2024, 1:27 pmI 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?
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?
Quote from supportTeam on March 19, 2024, 6:18 pmHi @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;
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: