Although I have been using the upperCase JavaScript someone provided for me, I haven't been able to get this to work with a table where the user is able to add rows. Although everything typed in the first row is being converted to upper case (when tabbing off of these fields), the same doesn't happen for subsequent rows in the table. I have tried specifying the upperCase CSS class both in the table, as well as the individual rows, but only the items in the first rows of the table are being converted.
For reference, this is what I'm using for the upperCase script at the moment:
$(document).ready(function(){
$('.upperCase input').focusout(function() {
$( this ).val($( this ).val().toUpperCase());
});
});
Thanks to anyone who might be able to help!
Marty Gaffney - Network Technician
Town of Okotoks