fires when grouping is applied to the component
id | number | ID of the group header (parent branch); |
value | string | value of the grouping criterion; |
data | object | component data object; |
webix.ui({
view:"treetable",
on:{
"data->onGroupCreated":function(id, value, data){
this.item(id).value = "Year "+value;
}
}
});
grida.group({
by:"year" //obj.value = year
});