Hide 'Show one journal field' button and display work notes and additional comments fields on the form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2017 02:39 AM
Hi,
Please let me know how to hide "Show one journal field" button and how to display both Work notes and addition comments fields on the form?
Thanks & Regards,
Shravan Kumar
- Labels:
-
Incident Management
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2017 02:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-03-2020 06:54 AM
Did you manage to do it??
Could anyone provide any idea about it?How work notes and comments can be visible at the same time?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-13-2020 05:22 AM
Hi,
Try this onLoad client script, also you have to manually add the 'Isolate script' field to the Client script
function onLoad() {
window.onload = function() {
setTimeout(function () {
try{
$$('button[title="Show one journal field"]')[0].hide();
} catch(err){}
}, 1000);
};
}