JSON example for SelectBox
Posted: Fri May 13, 2016 9:08 am
Hello,
I try to load a Select Box from a choice URL.
Below a JSON who work perfectly with an auto complete text box, but not with a Select Box
Can you post an exemple of a valid JSON for a Select Box ?
TY in advance
I try to load a Select Box from a choice URL.
Below a JSON who work perfectly with an auto complete text box, but not with a Select Box
Code: Select all
{
"success": true,
"response": {
"results": [
{
"option": "Monsieur",
"value": 1
},
{
"option": "Madame",
"value": 2
},
{
"option": "Mademoiselle",
"value": 3
}
]
}
}
TY in advance