ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: wd_perf on March 28, 2022, 09:11:09 pm
-
Can you please provide an example on how can I change the following pivot demo to be able to allow the use to display multiple aggregates for the same column? For example I want to be able to use the Pivot Mode to display max, min, avg at the same time for any column like Gold.
https://paramquery.com/pro/demos/pivot
-
Please follow these steps:
Define the columns in colModel.
{title: "Gold", dataIndx: "gold", width: 100, dataType:'integer',
tpCls: 'gold',denyGroup: true, denyPivot: true
},
{title: "Gold", dataIndx: "gold1", width: 100, dataType:'integer',
tpCls: 'gold',denyGroup: true, denyPivot: true, editable: false
},
{title: "Gold", dataIndx: "gold2", width: 100, dataType:'integer',
tpCls: 'gold',denyGroup: true, denyPivot: true, editable: false
},
Link new columns with the original column with help of formulas:
formulas: [
['gold1', function(rd) {
return rd.gold;
}],
['gold2', function(rd) {
return rd.gold;
}]
],
-
I see. Thanks for that example. Is it possible to do this without explicitly creating a new columns in the drag and drop selector? The use case I'm targeting would contain a few dozen columns. While this approach would work, it would explode the number of columns seen by the user.
-
columns can be hidden from toolPanel with tpHide property.