Hiding email client icon from scope application custom table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2026 05:35 AM
Hi Team,
I want to Hide email client icon from scope application custom table. I have write the script and made isolated script checkbox as false. But its not working in scoped application.
function onLoad() {
var apr = g_form.getValue('approved'); //True/false field type
if (apr != 'true') {
$('email_client_open').hide();
}
}
Its going inside the if condition but still its not working. Please suggest any solution or insides.
Thanks in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-11-2026 06:21 AM
Hi @Ankur Bawiskar , I have tried this $j('#email_client_open').hide(); solution but not wokring. Do you have any other approch?.
