Forum Discussion
- _anomDiebolt_Qrew EliteUse the IOL technique with this essential code:
$("form[name=editform] input[type=text], form[name=editform] textarea").on("change", function() {
Here is a screenshot captured after blurring each field and manually applying the above code through the console::
$(this).val($(this).val().toUpperCase());
});
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. - ZintJosephQrew CaptainDan will this change any previous type fields to all caps with the page is opened after it was saved with lower case
- _anomDiebolt_Qrew EliteNo it will only uppercase fields on the open form when the value is changed. If you want to change fields to uppercase en masse you have to use another approach.
The demo in this thread shows you how to apply a regular expression to do bulk modifications to a specific field in a query,
Clear the Swamp
https://community.quickbase.com/quickbase/topics/what-is-the-clear-the-swamp-technique