sets values into the inputs of a form/toolbar/property sheet control
values | object | a object with "property:value" pairs |
update | boolean | optional, if true, updates the form with new values while existing values remain. false by default, all old values are cleared |
config | any | operation config |
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.