I have received some JSON data in this format:
[{
"Id": 0,
"Text": "Item 1",
"Selected": 1
}, {
"Id": 1,
"Text": "Item 2",
"Selected": 1
}]
Additionally, there is an input element as follows:
<input type="text"
value="{{question.postObjs}}"
What I am aiming to achieve is to display the values of the "Text" property from the JSON data as a list within the input field.
Item 1, Item 2, ...
Is it possible to accomplish this task? I have been experimenting with different approaches without success so far.