how i put de toolbar inside de div?
var toolbar =
{
view: "toolbar", height: 40, elements: [
{ view: "label", label: "Toolbar", width: 150 },
{ view: "button", type: "icon", icon: "fa fa-comment", label: "Atendimento", width: 120 },
{ view: "button", type: "icon", icon: "fa fa-user", label: "Comercial", width: 100 },
{ view: "button", type: "icon", icon: "fa fa-suitcase", label: "Crédito", width: 80 },
{ view: "button", type: "icon", icon: "fa fa-archive", label: "Formalização", width: 120 },
{ view: "button", type: "icon", icon: "fa fa-file", label: "Relatórios", width: 100 },
{},
{ view: "button", type: "icon", icon: "cog", width: 30 },
{ view: "button", type: "icon", icon: "user", width: 30 }
]
};
var app = {
rows: [toolbar]
};
webix.ui(app);
<div id = "div"></div>