sets a new value for the component
value | string | a new value for the control |
webix.ui({
container:"box",
view:"form",
elements:[
{ view:"button", id:"b1", value:"Edit", type:"form" },
{ view:"button", id:"b2", value:"Back", type:"form" }
]
});
...
$$('b1').setValue("Save");
$$('b2').setValue("Cancel");
Back to top