Hi all!
Trying to add a list of all issues in a project, onto a project report. What I currently have is:
displayname=Issues
listdelimiter=
listmethod=nested(opTask).lists
type=iterate
valueexpression=CONCAT("• ",{opTask}.{name})
valueformat=HTML
and in the place of "opTask" I have also tried opTasks, resolvable, resolvables...
The idea is to have a bulleted list (ideally with each issue name hyperlinked to the issue in question).
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Remove the "opTask" from your expression. and change it to issues.
displayname=Issues
listdelimiter=
listmethod=nested(issues).lists
type=iterate
valueexpression=CONCAT("• ",{name})
valueformat=HTML
Remove the "opTask" from your expression. and change it to issues.
displayname=Issues
listdelimiter=
listmethod=nested(issues).lists
type=iterate
valueexpression=CONCAT("• ",{name})
valueformat=HTML
here is some documentation on when to use issues vs opTask
Thank you Kellie!! This fixed it!
The only other thing is I wanted the issue names hyperlinked to the issues, but for anyone who finds this thread in the future, it seems that's not possible currently.
My final code is:
column.10.displayname=Issues
column.10.sharecol=true
column.10.textmode=true
column.10.value=<strong>Total Issues: </strong>
column.10.valueformat=HTML
column.11.sharecol=true
column.11.textmode=true
column.11.valuefield=totalOpTaskCount
column.11.valueformat=HTML
column.12.sharecol=true
column.12.textmode=true
column.12.value=<br>
column.12.valueformat=HTML
column.13.listdelimiter=<div>
column.13.listmethod=nested(issues).lists
column.13.textmode=true
column.13.type=iterate
column.13.valueexpression=CONCAT("• ",{name})
column.13.valueformat=HTML
And it produces something like this:
Views
Replies
Total Likes