Expand my Community achievements bar.

SOLVED

Change the font from capital to lowercase when floating field is entered

Avatar

Level 6

Good day,

I have a form which contains words which are capitalized and are in lowercase within the form.  I created a drop down box with the words and created floating fields where the words are to be entered.  The problem I am running into is that if the word is capitalized within the drop box, it will capitalized the word in the area of the form where is should not be capitalized.  Is there a way to fix this?  

 

1 Accepted Solution

Avatar

Correct answer by
Level 10

I think you'll need to use two different floating fields. One for the capitalized strings and one for the lowercase string. In the latter, you add a script to copy the value from the dropdown list and convert it to lowercase.

this.rawValue = DropdownList.rawValue.toLowerCase();

 

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

I think you'll need to use two different floating fields. One for the capitalized strings and one for the lowercase string. In the latter, you add a script to copy the value from the dropdown list and convert it to lowercase.

this.rawValue = DropdownList.rawValue.toLowerCase();