adds a subview configuration into datatable
Available only in PRO Edition
webix.ui({
view:"datatable",
subview:{
view:"form",
elements:[
...
]
}
});
You can also set a subview as a function with two parameters:
For example:
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
]
});