Dear all,
we would like use a treetable with a grouping function and filter.
Here the pseudocode to configure the widget:
{
view:"treetable",
scheme:{
$group:{
by: "article",
map:{
meanvalue: ["coefficient", "avg"],
}
}
}
columns:[
{ id: "article"', header:["Article"]},
{ id: "description", header:["Description", {content:"textFilter"}]},
{ id: "coefficient", header:["Coeff."]},
]
}
When we apply the filter to the treetable the rows are correctly filtered, but the aggregate value (i.e. ‘meanvalue’) is not updated.
I cannot figure out if it is a webix’s bug or an error in our code.
any suggestions, working examples or snippets?
thanks in advance