subview
adds a subview configuration into a datagrid
let subview: WebixView|function
Example
Section titled “Example”webix.grid({ subview:{ view:"form", elements:[ ... ] }});
also check the next samples:
Details
Section titled “Details”You can also set a subview as a function with two parameters:
- obj - an item object for which a subview will be rendered
- target - an HTML element where a subview will be rendered
For example:
webix.grid({ // subgrid configuration subview: function(obj, target) { return webix.ui({template:"some", autoheight:true}, target); }, // datagrid configuration columns:[ // columns configs ], data:[ // data items ]});
See also
Section titled “See also”Articles
API