{
view:“treetable”,
id:“id_maintreetable”,
columns:[
{ id:“colfilter”, header:{content:“textFilter”}, width:400,
template:"{common.treetable()} #value#" },
{ id:“C”, header:“C”, width:100},
{ id:“T”, header:“T”, width:100},
{ id:“valt-c”, header:“T-C”, width:100, math:"[$r,T] - [$r,C]"},
],
filterMode:{
level:1
},
“export”:true,
math: true,
}
I’m loading data via an AJAX request. But for some reason the ‘valt-c’ column does not get populated. The values are displaying properly in the T and C columns.
I tried this in a snippet with some random line of data: http://webix.com/snippet/d6622d84
And it works in there. Could this be a bug?