Hi
We are trying to show price and sku in a list view.
But the fields in the list view are empty.
How can we display the those values in a Umbraco backoffice list view ?
I believe this should be possible, but you might need a bit of config. The SKU should just show as it's a simple text field, but the prices field stores it's value as a JSON object so you'll need to provide an angular template to extract the price to display.
Showing Price and SKU in a list view.
Hi We are trying to show price and sku in a list view. But the fields in the list view are empty. How can we display the those values in a Umbraco backoffice list view ?
We are on umbraco 8.
Hi Nicolai,
I believe this should be possible, but you might need a bit of config. The SKU should just show as it's a simple text field, but the prices field stores it's value as a JSON object so you'll need to provide an angular template to extract the price to display.
Take a look at this issue for some more info on how this works https://github.com/umbraco/Umbraco-CMS/pull/6597 but ultimately the price field stores it's value in the this format
So it'll look like this
So you'd need a template of something like this to extract one of the prices
Hope this helps
Matt
Hi Matt It worked :)
Awesome! 👍
is working on a reply...