Author Topic: Not using title in group model  (Read 1622 times)

kiwon34

  • Pro Ultimate
  • Jr. Member
  • *
  • Posts: 52
    • View Profile
Not using title in group model
« 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?

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6309
    • View Profile
Re: Not using title in group model
« Reply #1 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
})
},