Hi.
Is there a way to rename columns with out using jquery?
My current solution works but when there is 100+ fields it takes some time and if pass it off to the user it would be easy for them to rename the columns according.
My current solution that works in the new and edit forms(still figuring out the display side of things) is below:
$("nobr:contains('StudyName')").html('<b>Study Name</b>');
$("nobr:contains('PTNO')").html('<b>Patient #</b>');
$("nobr:contains('DTCRF')").html('<b>Date of CRF</b>');
$("nobr:contains('CRFB')").html('<b>CFR Completed By</b>');
Thank you again.