How to create a mask of letters so that they are all in uppercase?

  • ssccbspadm
    Asked on October 5, 2018 at 4:11 PM

    Coo criar uma máscara de letras para que todas fiquem em maiúsculas?

    Grato,

  • Jed_C
    Replied on October 5, 2018 at 10:07 PM

    You can apply a CSS code to the masked field so it will output the text in uppercase.

    ex.

    #input_3{

    text-transform:uppercase;

    }

    1538791600masked in caps Screenshot 10

    To find the input ID of a field, please check this guide https://www.jotform.com/help/146-How-to-Find-Field-IDs-and-Names.

    The CSS declaration you need is the "text-transform:uppercase;". You'll just need to locate the ID of the field and your all set.

    I hop this helps. Let us know if you have any questions or if you need further assistance.