an object that specifies items presentation
webix.ui({
view:"menu",
type:{
subsign:true
},
..//config
});
It is possible to create a type object separately and then refer to it by its name:
webix.type(webix.ui.dataview,{
name:"typeA",
width: 260,
height: 90
});
webix.ui({
view:"dataview",
type:"typeA"
});
Related sample: Named Templates
More information about Type Implementation can be found in a separate article of the main documentation.