この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
I would like to not display the status option for my parent tasks on a project. Can I build this out with a custom view? Can I accomplish this with an IF statement? Something else?
As you can see in the screenshot below my parent tasks do not have assignments. I don't want them to display a status option either. Help?
解決済! 解決策の投稿を見る。
トピックはコミュニティのコンテンツの分類に役立ち、関連コンテンツを発見する可能性を広げます。
表示
返信
いいね!の合計
Hi Samantha,
This worked for me to create a new View that does not show the status of parent tasks.
displayname=Status
enumclass=com.attask.common.constants.TaskStatusEnum
enumtype=TASK
linkedname=direct
namekey=status
querysort=status
textmode=true
type=enum
valueexpression=IF({numberOfChildren}=0, {status})
valueformat=customDataLabelAsString
Hope this helps,
Teale
Hi Samantha,
This worked for me to create a new View that does not show the status of parent tasks.
displayname=Status
enumclass=com.attask.common.constants.TaskStatusEnum
enumtype=TASK
linkedname=direct
namekey=status
querysort=status
textmode=true
type=enum
valueexpression=IF({numberOfChildren}=0, {status})
valueformat=customDataLabelAsString
Hope this helps,
Teale
Thanks Teale!
Hi @Teale McCleaf‚
Thanks for sharing this code, it works really. But can we do same for the assignments for parent task. Since, many places user add their name even recommendation of best practices? Also thanks to @Samantha Isin‚ for asking this question.
Mvh
Kundan.
Hi Kundan,
You can use the same code and change the 'number of children' value to >0 and the results will only show parent tasks.
displayname=Status
enumclass=com.attask.common.constants.TaskStatusEnum
enumtype=TASK
linkedname=direct
namekey=status
querysort=status
textmode=true
type=enum
valueexpression=IF({numberOfChildren}>0, {assignmentsListString})
valueformat=customDataLabelAsString
Use assignmentsListString for all assignees or assignedToID for the Primary Owner.
Best -
Teale
表示
返信
いいね!の合計