Workspace: Attachment Related list issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-05-2022 08:27 AM
We have been facing issue with our Attachments Related List on a Case on Agent Workspace which correctly shows all attachments on the table, however when i click on the attachment it opens up the record details in a new tab while i dont see the attachment can be opened or saved locally on the system
When i click on the File name, i see the below screen, can someone suggest how can i open the file in a new tab or save locally the file on the system, On Native UI it seems to work fine?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-05-2022 08:43 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-06-2022 01:30 PM
if yes please close the thread by marking the answer correct so that it helps future readers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-16-2024 10:09 PM
This would solve your issue. An onload client script on sys_attachment table.
function onLoad() { openUrl("sys_attachment.do?sys_id=" + g_form.getUniqueValue()); g_form.addInfoMessage('Attachment downloaded'); } function openUrl(url) { this.open(url); }
Thanks,
Soumya.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2024 12:35 PM
Hi this is working so thank you. However, is there a way to prevent it from going/showing the attachment record?
I would like for it to download the attachment but stay on the list of attachments instead of it navigating to the attachment record, which would confuse users.