Forum Discussion
Unable to open task item in new experience *_000
Same thing happening to my list.. I made a BIG deal to the whole department about how much better it would be converting our task-list to modern and now we have this issue.
Honestly I have to question MS on this.. converting sites over to modern is fraught with so many issues it's not worth doing - if you have an existing classic site. I've been trying to sell modern to the entire department and now I look foolish.
Very disappointing... hire some UX and UI people please
Anybody found a solution to this issue yet?
David1972 wrote:
Same thing happening to my list.. I made a BIG deal to the whole department about how much better it would be converting our task-list to modern and now we have this issue.
Honestly I have to question MS on this.. converting sites over to modern is fraught with so many issues it's not worth doing - if you have an existing classic site. I've been trying to sell modern to the entire department and now I look foolish.
Very disappointing... hire some UX and UI people please
David1972 wrote:
Same thing happening to my list.. I made a BIG deal to the whole department about how much better it would be converting our task-list to modern and now we have this issue.
Honestly I have to question MS on this.. converting sites over to modern is fraught with so many issues it's not worth doing - if you have an existing classic site. I've been trying to sell modern to the entire department and now I look foolish.
Very disappointing... hire some UX and UI people please
- David1972Jul 04, 2019Brass Contributor
sonali_gupta if you do format column on your title column then add this code below - it will add a clickable link to the title that will go through to the task description.. I also added an EDIT column and formatted that as a link that goes through to an edit view of the task. It's not perfect but it's a workaround until it gets fixed (if it does get fixed).
Sorry there is no code block here so this is going to look awful...{
"elmType": "a",
"txtContent": "@currentField",
"attributes": {
"target": "_blank",
"href": {
"operator": "+",
"operands": [
"https://[YOURSITEURL]/Lists/[LISTNAME]/DispForm.aspx?ID=",
"[$ID]"
]
}
},
"style": {
"font-weight": "bold"
}
}
You can also add in an EDIT column that is a link like this:{
"elmType": "a",
"txtContent": "EDIT",
"attributes": {
"target": "_blank",
"href": {
"operator": "+",
"operands": [
"https://[YOURSITEURL]/Lists/[LISTNAME]/EditForm.aspx?ID=",
"[$ID]"
]
}
},
"style": {
"text-decoration": "underline",
"align": "center"
}
}- sonali_guptaJul 12, 2019Copper Contributor
David1972 Thanks a lot :)