Multiselect inherits from a standard Richselect control.

webix.ui({
view:"multiselect", suggest:{
view:"multisuggest", data:[
{id:1, value:"one"},
{id:2, value:"two"}
]
}
});

| CSS class | Element |
|---|---|
| .webix_control.webix_el_richselect | the whole 'richselect' control |
| .webix_list.webix_multilist | the list of options |
Read more about Multiselect
Back to top