Is it possible to pull data from a separate AgGrid?
Presumably I would need to specify the grid id (?), column and the rowId.
{
"field": "vol_total",
"valueGetter": {"function": "calculateVolTotal(params)"},
},
dagfuncs.calculateVolTotal = function (params) {
// area from local table
const area = params.data.area
// height from separate table
const height = TODO
return area * height;
}