input

points to an HTML input field that houses the suggest list

HTMLElement|string input;

Example

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
});

Related samples

See also
Back to top