I am no longer getting the popup to enter in custom data this is due to a change in how I get my data with the get request it returns and array " value" which has seem to have broken the combobox's ability to filter data and to see if an Item already exists so I no longer get the option to add in new data.
What do I have to do to resolve this I am not sure how I should build the query using the "value" keyword ...
example data returns like the following
{
"@odata.context": "https://localhost:5001/odata/$metadata#Categories",
"value": [
{
"Id": 1,
"categoryName": "Computers"
},
{
"Id": 2,
"categoryName": "Tools"
},
{
"Id": 3,
"categoryName": "Furniture"
},
{
"Id": 4,
"categoryName": "New Category"
},
{
"Id": 5,
"categoryName": "Test Category"
},
{
"Id": 6,
"categoryName": "Toys"
},
{
"Id": 7,
"categoryName": "Horses"
},
{
"Id": 8,
"categoryName": "Another Category"
},
{
"Id": 9,
"categoryName": "Tables"
},
{
"Id": 38,
"categoryName": "Testnumbers11111"
},
{
"Id": 39,
"categoryName": "trdsfg"
},
{
"Id": 40,
"categoryName": "yuiyui"
},
{
"Id": 41,
"categoryName": "asd"
},
{
"Id": 42,
"categoryName": "Testnumbers111112"
},
{
"Id": 43,
"categoryName": "I am adding to add for you"
}
]
}
any assistance would be helpful
thanks