Documentation

input

points to an HTML input field that houses the suggest list

input;

Example

webix.ui({
    width: 300,
    container:"data_container3",
    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
});

See also

Back to top