Hello
I am trying to use the following data structure in the Items property of a drop down control. When i have a single object, it works, when i have multiple objects it does not.
This works fine.
{
Role: "Exchange Administrator",
Id: "nnnnn",
Description: "Users with this role have global permissions within Microsoft Exchange Online."
}
This does not.
{
"Roles":[
{
"Role":"role 1",
"Id":"nnn",
"Description":"something."
},
{
"Role":"role 2",
"Id":"nnn",
"Description":"something else."
}
]
}