- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2018 03:53 AM
I have 4 fields that are price fields and 3 out of the 4 show a pencil but just opens up to a blank page. Any idea on how to get rid of this? TIA
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2018 04:28 AM
Hi Wendy,
Code as below:
function onLoad() {
//document.getElementById("pm_project.cost.editLink").style.display="none";
document.getElementById("<<id>>").style.display="none"; //right click the pencil icon & do inspect look for id & paste it over here
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2018 04:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2018 04:33 AM
That didn't seem to work. It's actually a price field I was thinking it was a currency field. Does that matter?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-23-2018 04:40 AM
Thanks I get it now
function onLoad() {
//document.getElementById("pm_project.cost.editLink").style.display="none";
document.getElementById("sn_sm_legal_request.u_purchase_sale_price.editLink").style.display="none"; //right click the pencil icon & do inspect look for id & paste it over here
}