AgileApps version 10.13.25.3
We have the need to format field labels and other labels. We can accomplish this using the onload area of form scripts with a piece of code similar to this:
setTimeout(()=>{
$(“label:contains(‘Record ID’)”).css({“color”: “purple”, “font-weight”: “bold”, “font-size”: “32px”, “font-family”: “Arial”}); },1);
However, this only applies to the first section of the form. How can we accomplish this on other sections on a form?
Thank you
#AgileApps#webMethods