ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: kiwon34 on January 13, 2020, 08:26:55 pm

Title: Not using title in group model
Post 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: Re: Not using title in group model
Post by: paramvir on January 13, 2020, 08:58:21 pm
Title rows can be hidden in dataReady event.

Code: [Select]
dataReady: function(){
this.pageData().forEach(function(rd){
rd.pq_hidden = !!rd.pq_gtitle
})
},