points to an HTML input field that houses the suggest list
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
});