Expand my Community achievements bar.

The Community Advisors application is now OPEN for the second class of 2024. Apply to become a part of this exclusive program!
SOLVED

Template View Assignment Hours

Avatar

Level 2

Is there a way to create a text mode in View see assignment planned hours for each task inside the templates? If so, how would I go about building it?

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

You can add a text mode column to your view with the following code and it should get you what you need.

 

 

For actual assignments

valueexpression=CONCAT({workRequired}/60 ,' Hours - ',{assignedTo}.{name})
listdelimiter=<br>
listmethod=nested(assignments).lists
valueformat=HTML
name=Wrk Assignment(s)
width=300
textmode=true
type=iterate
usewidths=true

 

 

For Roles 

listdelimiter=<br>
listmethod=nested(assignments).lists
name=Wrk Assignment(s)
textmode=true
type=iterate
usewidths=true
valueexpression=CONCAT({workRequired}/60 ,' Hours - ',{role})
valueformat=HTML
width=300

 

 

 




View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

You can add a text mode column to your view with the following code and it should get you what you need.

 

 

For actual assignments

valueexpression=CONCAT({workRequired}/60 ,' Hours - ',{assignedTo}.{name})
listdelimiter=<br>
listmethod=nested(assignments).lists
valueformat=HTML
name=Wrk Assignment(s)
width=300
textmode=true
type=iterate
usewidths=true

 

 

For Roles 

listdelimiter=<br>
listmethod=nested(assignments).lists
name=Wrk Assignment(s)
textmode=true
type=iterate
usewidths=true
valueexpression=CONCAT({workRequired}/60 ,' Hours - ',{role})
valueformat=HTML
width=300