


Hi
Is it possible to add a field "View Icon" as column in Issue / Task / Project type report?
Any idea or Text mode possibility? This column makes easy to download the file.
The "View Icon" i reffer from Document type report, and do not see in other types, Please refer attached image.
Appreciate any info in this regard.
Best regards,
Kundan.
I use following text mode to display download URL in task report. I guess to have an icon instead, the download URL would have to be saved first into a field. I'm not sure if that's an option.
I think that the fact that document to task relation is many to one is a complication here. That's why below you have list of URLs.
displayname=Supporting Documents
listdelimiter=<br>
listmethod=nested(documents).lists
textmode=true
type=iterate
valueexpression=CONCAT({name}," - https://bain.my.workfront.com/internal/document/download?versionID=",{currentVersionID},"&ID=",{ID})
valueformat=HTML
Thank you @Rafal_Bainie , it works as creating of link. Besides looking any idea of text mode, to make visible of icons as attachment.
I appreciate your sharing and worthy too.
Have a nice day!
Mvh
Kundan.
Views
Replies
Total Likes
no problem, Kudos should go to someone from the community from whom I did pick this up. Sadly I don't remember where I did found that.
Due to above mentioned relation problem I don't think that modifying list to set of icons will be possible. I don't know how to do that, I did try couple of times, but I failed
No problem @Rafal_Bainie
I appreciate a lot to your help, let's see if any one in community can share in this regard.
Have a nice day!
Mvh
Kundan.
Views
Replies
Total Likes
Hi, I'm curious what you're wanting to pull in as task/issue icons? Wouldn't they just be URLs? Or are you wanting to just see any documents associated with the task/issue? If the latter is the case, you can add a column to your report with this text mode:
displayname=Documents
listdelimiter=<br>
listmethod=nested(documents).lists
textmode=true
type=iterate
valueexpression=CONCAT({name},".",{currentVersion}.{ext})
valueformat=HTML
Views
Replies
Total Likes