used to override default classes with new ones
class CustomTopView extends docManager.views.top {
// custom logic
}
webix.ui({
view: "docmanager",
url: "//localhost:3200/",
override: new Map([
[docManager.views.top, CustomTopView]
]),
});
The override property is designed for customizing inner views and services.
It allows setting the Map with a 2D array each, element of which is an array that stores: