Forum Discussion
Jin Chen
Nov 02, 2020Iron Contributor
Comment in Microsoft List
Hello MSFT
Today, I found that I am now able add comment in Microsoft list for one of my list. However, I am finding some issues:
1. After a comment is added, I dont see any icon on the quick vie...
ganeshsanap
Dec 10, 2020MVP
Try using below JSON code. It will bold the title text and show comments icon if there are any comments added.
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json",
"elmType": "div",
"attributes": {
"class": "ms-fontColor-themePrimary ms-fontSize-m"
},
"children": [
{
"elmType": "span",
"txtContent": "@currentField",
"style": {
"font-weight": "bold"
}
},
{
"elmType": "span",
"style": {
"font-size": "16px",
"margin-left": "10px",
"display": "=if([$_CommentCount] == '0' , 'none' , 'block')"
},
"attributes": {
"iconName": "Comment"
}
}
]
}
Microsoft documentation: Use column formatting to customize SharePoint
Additional References:
- SharePoint Online: All you need to know about Commenting in Lists
- How to Enable/Disable the commenting in SharePoint Online/Microsoft Lists
Please click Mark as Best Response if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
aykutkaraca
Feb 12, 2021Copper Contributor
I am having exactly the same problem. Teams doesnt show the old comments entered using Microsoft Planner/Lists. And now I connected Microsoft Planner/Lists, and my comments from yesterday arent visible either.
- DLutchy365AssistMar 06, 2021Brass ContributorI have just created a List in a Microsoft Teams Channel. The only way to see the comments is to either open the list in Sahrepoint or in the List App (Web).
Is there anyway to see the comments directly from the list in the Teams Channel?- ganeshsanapMar 06, 2021MVP
DLutchy365Assist , aykutkaraca
This is a current limitation of Microsoft lists in Microsoft teams. This will be available in future.
For now, you can follow below workaround:
When you want to add list as a tab in Microsoft Teams, you can add a Website tab rather than Lists tab.
When you use "Website" tab, you need to pass the list URL from browser. Then you can see the list comments in browser tab like:
Read more about list comments feature in below articles:
- All you need to know about Commenting in Lists
- Working with SharePoint Online/Microsoft List Comments using JSON Formatting
- How to Enable/Disable the commenting in SharePoint Online/Microsoft Lists
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.