указывает на поле ввода HTML, которому принадлежит suggest
webix.ui({
width: 300,
rows: [
{
template:"<label for='country3'>Country</label>" +
"<input type='text' id='country3' value='Colombia' />",
height: 36,
borderless:true
},
...
]
});
webix.ui({
view: "suggest",
input: "country3",
data:countries
});