Make form field where outputs all caps

  • crossland
    Asked on March 2, 2018 at 11:04 AM

    Make form field where outputs all caps.

     

    Employee completes form, which they I record information in backend system, before imputing in other system I have to highlight text and change to all caps and then paste into field.   

    Thousands of these types of entries in 1 month.  Any shortcut would be helpful.

     

    Thanks

     

  • Nik_C
    Replied on March 2, 2018 at 12:18 PM

    If you need to have a field where all text will be uppercase by default, you can do that with CSS:

    #input_3{

      text-transform: uppercase;

    }

    Where a bolded part is ID of the field where you want to make that happen.

    To find an ID of the field, please follow: https://www.jotform.com/help/146-How-to-Find-Field-IDs-and-Names

    Then copy the above CSS (with adjusted field ID) to your Custom CSS Field: https://www.jotform.com/help/117-How-to-Inject-Custom-CSS-Codes


    1520011092screencast Screenshot 10

    Here is my test form: https://form.jotform.com/80604420880956

    Let us know if that works for you.

    Thank you!