Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2022-01-17 11:41 AM
Hi Archeriers
I have a requirement, the client wants to hide the labels "Advances Record" & "Does not Advance" in an application with a AWF. The AWF is very simple and they think is better to hide this information. Could i hide these labels?
Thanks in advance
Regards
2022-01-18 06:43 AM
These are HTML objects, so I assume you can. Just find what are their IDs or other identificators, tags and hide with JQuery.
2022-09-14 07:52 PM
You can try the following:
$('.dropdown-content-label:contains("ADVANCES RECORD")').hide();
$('.dropdown-content-label:contains("DOES NOT ADVANCE")').hide();