- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2019 09:52 PM
Hi Community,
I have a requirement wherein I have to add a download icon to all the rows in the "All managed documents" listing.
Like the image listed below,
On clicking this icon, I should be able to download the corresponding document, any help on how to achieve this is appreciated!
Thanks,
Raskill
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2019 02:06 AM
Hi,
You can add an icon by using field styles.
- Navigate to Field styles
- Create a New record
- Select table as sys_attachment
- Select the field name(I selected File name) before which you want to add an icon
- In Value field add javascript:true
- In style field add following code :
background-image: url('images/icons/download.gif');
background-repeat: no-repeat;
background-position: 98% 5px;
padding-right: 30px;
7. Update.
Please see below result.
Mark If Correct/Helpful.
Regards,
Ajay

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2019 02:06 AM
Hi,
You can add an icon by using field styles.
- Navigate to Field styles
- Create a New record
- Select table as sys_attachment
- Select the field name(I selected File name) before which you want to add an icon
- In Value field add javascript:true
- In style field add following code :
background-image: url('images/icons/download.gif');
background-repeat: no-repeat;
background-position: 98% 5px;
padding-right: 30px;
7. Update.
Please see below result.
Mark If Correct/Helpful.
Regards,
Ajay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2019 10:16 PM
Thanks Ajay, this did the trick.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2019 10:46 PM
I am glad that you liked the solution provided.
A request would be to spare some time out of your busy schedule to have a look at the services we provide along with multiple Blogs available on our website:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2019 01:42 AM
sure