ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: kiwon34 on January 13, 2020, 08:26:55 pm
-
Is there a way to not use title in group summary?
I want only to show sum data in the bottom of each group, and not use or show title & collapse.
Is there an option or method for it?
-
Title rows can be hidden in dataReady event.
dataReady: function(){
this.pageData().forEach(function(rd){
rd.pq_hidden = !!rd.pq_gtitle
})
},