define of ui.video, Methods Webix Docs
redefines a single configuration property (or a object with properties)
void define(string| WebixViewConfig property, [any value] );
Example
// redefines the width of the list
$$("mylist").define("width", 300);
$$("mylist").resize();
// changes the label of the button
$$("button1").define("label", "New value");
$$("button1").refresh();
// changes multiple properties at once
$$("text2").define({
value:"123",
label:"New label"
});
$$("text2").refresh();
Related samples
Details
The component should be refreshed to reflect the changes.
Redefining properties via "config" object
You can also use the config property to change the desired configuration option:
$$("myList").config.width = 300:
$$("myList").resize();
See also