задает конфигурацию вложенных компонентов для рядов datatable
Available only in PRO Edition
webix.ui({
view:"datatable",
subview:{
view:"form",
elements:[
...
]
}
});
subview может быть также функцией с параметрами:
Например:
webix.ui({
view:"datatable",
// subgrid configuration
subview: function(obj, target) {
return webix.ui({template:"some", autoheight:true}, target);
},
// datatable configuration
columns:[
// columns configs
],
data:[
// data items
]
});