Skip to main content
Announcements
Global Transformation Awards! Applications are now open. Submit Entry
cancel
Showing results for 
Search instead for 
Did you mean: 
pedrooofaria
Contributor
Contributor

Where can I find the "TotalAggr" function to bring the measure totals into an extension?

Estou criando uma extensão de tabela e quero colocar uma linha com os totais de cada coluna. Fiz engenharia reversa em algumas extensões para analisar o código e encontrei isso:

measures: {
                uses: "measures",
                min: 0,
                max: 30,
                items: {
                           showIF: showIF,
                           TotalAggr: {
                                          type: "string",
                                          label: "Total Function",
                                          ref: "qDef.qAggrFunc",
                                          component: "dropdown",
                                          options: [{
                                                         value: "Expr",
                                                         label: "Auto"
                                                         },{
                                                         value: "Avg",
                                                         label: "Avg"
                                                         }, {
                                                         value: "Count",
                                                         label: "Count"
                                                         }, {
                                                         value: "Min",
                                                         label: "Min"
                                                         }, {
                                                         value: "Max",
                                                         label: "Max"
                                                         }, {
                                                         value: "Sum",
                                                         label: "Sum"
                                                         },{
                                                         value: "None",
                                                         label: "None"
                                                         }]

                                          }

                }


Não estou conseguindo achar a função com essa referência "qDef.qAggrFunc". Alguém pode me ajudar?

Labels (1)
2 Replies
ajaykakkar93
Specialist III
Specialist III

hi
You can look into the below extension hope it helps

https://github.com/ajaykakkar93/TableBox

Please mark the correct replies as Solution. Regards, ARK
Profile| GitHub|YouTube|Extension|Mashup|Qlik API|Qlik NPrinting

pedrooofaria
Contributor
Contributor
Author

Obrigado.

Achei a solução dando um console.log na variável "layout".

Os totais se encontram em:

hypercube.qGrandTotalRow