List view column templates checkboxlist umbraco 10
I have a list view and try to change the shown columns in the list view settings.
One of the columns I like to show is a checkbox list and I want to show the ones that are checked.
I don't know what to use in de template. If I use {{ value }} it will show as ["Value1", "Value2", "Value3"]. I want it to show as Value1, value2, Value3
What should I use in the tempate?
I also have a checkbox for active. In the View I want to show an icon instead of text. Is that possible?
At this moment I am using: {{ value[0] ? "Active" : "Inactive" }} . This works fine, but I love if it would show a checkbox if active and show nothing otherwise.
List view column templates checkboxlist umbraco 10
I have a list view and try to change the shown columns in the list view settings.
One of the columns I like to show is a checkbox list and I want to show the ones that are checked.
I don't know what to use in de template. If I use {{ value }} it will show as ["Value1", "Value2", "Value3"]. I want it to show as Value1, value2, Value3 What should I use in the tempate?
I also have a checkbox for active. In the View I want to show an icon instead of text. Is that possible? At this moment I am using: {{ value[0] ? "Active" : "Inactive" }} . This works fine, but I love if it would show a checkbox if active and show nothing otherwise.
is working on a reply...