I like to bind to this JSON below. De JSON should fill the dropdownlist. The first item would have a value of 0 and a text of Unknown.
{
"0": "Unknown",
"1": "Not executed",
"2": "Not reported",
"3": "Executed and Reported",
"4": "Not to be executed",
"select": null,
"table": null
}
But somehow the dropdownlist only accepts JSON like:
[
{ "value": 0, "text": "Unknown" },
{ "value": 1, "text": "Not executed" },
etc.,
]
Is it possible to configure the ddl with the most above JSON?