I want to display a variable number of items so using an Adaptive card column set/column.
In Power Automate I can surface as an array.
In PVA Preview have converted string to table.
Each item is {"type":"TextBlock","text:"(field contents)"},
The table surfaces as a message like this but doesn't display in column.
["{\u0022type\u0022:\u0022TextBlock\u0022,\u0022text\u0022:LEX-1019},","{\u0022type\u0022:\u0022TextBlock\u0022,\u0022text\u0022:LEX-1108},","{\u0022type\u0022:\u0022TextBlock\u0022,\u0022text\u0022:LEX-1019},","{\u0022type\u0022:\u0022TextBlock\u0022,\u0022text\u0022:LEX-1019},","{\u0022type\u0022:\u0022TextBlock\u0022,\u0022text\u0022:LEX-1108},",""]
Does a table translate as an array to an Adaptive card element? Hlep please. Thanks, Richard UK
Card syntax is
{
type: "Container",
items: [
{
type: "ColumnSet",
columns: [
{
type: "Column",
width: "stretch",
items: (Topic.SearchResultsTable)
},