GridFooter
//the following will give a sum for all data for the column "cordGrossValue"
[
{
"column":"cordGrossValue"
}
]
//the following will give an average for the visible data within a selection. If no selection is activ all data will be processed
[
{
"column":"cordGrossValue",
"select":"visible",
"action":"avg"
}
]
//the following will give one decimal digit for the value and add leading and trailing text. e.g. "Total: 123.4 $"
[
{
"column":"cordGrossValue",
"decimalDigits": 1,
"textLeading": "Total: ",
"textTrailing": " $",
}
]Last updated