Simple array in json and put it into listview

i have json like
[
{
color: "red",
value: "#f00"
},
{
color: "green",
value: "#0f0"
},
{
color: "blue",
value: "#00f"
},
{
color: "cyan",
value: "#0ff"
},
{
color: "magenta",
value: "#f0f"
},
{
color: "yellow",
value: "#ff0"
},
{
color: "black",
value: "#000"
}
]
and want to put diff color in listview, and while picking, the value of selected color to be available to me. help me.

Use dictionary blocks and try something like this ...

1 Like

Absolutely Perfect,
Thanks.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.