need to edit RITM form in ESC
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
Hello,
The requirement is, need to add replace Activity with Activity / Comments in RITM form in ESC.
please help me. can't send screenshot due to restriction
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
yesterday
HI Tera,
Thanks for response. my Issue resolved.
I had picked "Standard Ticket Tab" widget.
and in Server-Side script added the below lines and it works.
//Rename Activity tab to Activity / Comments
if (data.tabs && data.tabs.length) {
data.tabs.forEach(function(tab) {
if (tab.name == gs.getMessage("Activity")) {
tab.name = gs.getMessage("Activity / Comments");
}
});
Thanks,
Nayeem