Forum Discussion

JeffHelseth's avatar
JeffHelseth
Qrew Member
8 years ago

Caps locking in all fields a possibility?

Looking to see if there is a way to put a caps lock on all tables and forms within an app. It helps with consistency with multiple people entering into the system.

3 Replies

  • Use the IOL technique with this essential code:
    $("form[name=editform] input[type=text], form[name=editform] textarea").on("change", function() {
      $(this).val($(this).val().toUpperCase());
    });
    Here is a screenshot captured after blurring each field and manually applying the above code through the console::



    There are two text and two text  multi-line fields on the form. I wrote the code to capatalize each field after the field was changed. It would also make the changes on a letter by letter basis.
  • Dan will this change any previous type fields to all caps with the page is opened after it was saved with lower case