Is there, within one of the various UI frameworks for NR, that would allow dynamic UI creation? Here is the use case, I have a JSON, that changes from time to time, I want to create a button for each top level property in the JSON.
The JSON is rather simplistic...
[
{
"Name": "One",
"Key": "1"
},
{
"Name": "Two",
"Key": "2"
}
]
Would love to create a follow on when the JSON is loaded... creates two buttons (per the number in the JSON file), where the button label set to name, and payload to key, for example. Anyone do something similar?