I need to populate values to different combobox from a single json file.JSON file containing two arrays.One named as ‘Country’ and other named as ‘State’.I need to populate the values inside ‘Country’ to one combobox and the values inside ‘State’ to the second combo box.My json file is given below,
{
"data": [
{
"Country": [
{
"id": "1"
},
{
"value": "USA"
}
],
"State": [
{
"id": "1"
},
{
"value": "New York"
},
{
"id": "2"
},
{
"value": "Florida"
}
]
}
]
}
If it is possible in webix please give advise.