In TABLENAME-dv.js file in the hooks directory
// Set input to automatically convert to Uppercase. File hooks/tablename-dv.js
$j('#FIELDNAME').keyup(function () {
$j(this).val($j(this).val().toUpperCase());
});
In TABLENAME-dv.js file in the hooks directory
// Set input to automatically convert to Uppercase. File hooks/tablename-dv.js
$j('#FIELDNAME').keyup(function () {
$j(this).val($j(this).val().toUpperCase());
});