suggest list ajax

{
view: “text”, value: ‘’,
suggest: webix.ajax().headers({ “Content-type”: “application/json” }).post(URL + ‘Services/UI.asmx/GetCities’, JSON.stringify({ ‘Country’: country }), function (data) { return JSON.parse(data);})
}

return JSON.parse(data) - возвращается json, но в список suggest пуст. Как сделать без синхронного запроса?

Try to use the full config

var promise = webix.ajax().headers({ "Content-type": "application/json" }).post(URL + 'Services/UI.asmx/GetCities', JSON.stringify({ 'Country': country }), function (data) { return JSON.parse(data);

webix.ui({
    view: "text", value: '', suggest:{
        body:{ data : promise }
    }
})