Important Update: Some Community URL Redirects are Under Maintenance. Learn More. .

cancel
Showing results for 
Search instead for 
Did you mean: 

Custom object to Hide labels "Advances Record" & "Does not Advance"

EliasTabarez1
Collaborator II

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

2 REPLIES 2

Ilya_Khen
Champion III

EliasTabarez1,

These are HTML objects, so I assume you can. Just find what are their IDs or other identificators, tags and hide with JQuery.

DeanAllen
Contributor III

You can try the following:

$('.dropdown-content-label:contains("ADVANCES RECORD")').hide();

$('.dropdown-content-label:contains("DOES NOT ADVANCE")').hide();