setValues of ui.toolbar, Methods Webix Docs
webix.ui({
view:"toolbar",
id:"toolbar1",
elements:[
{ type:"text", name:"field_a" },
{ type:"text", name:"field_b" },
]
});
function set_toolbar(){
$$("toolbar1").setValues({
field_a: "London",
field_b: "New York"
});
};
The method allows setting several values at a time. Data names of these values must coincide with values of the name parameters of the corresponding toolbar elements.
If you have not checked yet, be sure to visit site of our main product Webix web ui framework and page of toolbar product.