Author Topic: How to sort summary rows after grouping?  (Read 2408 times)

xyj1103

  • Newbie
  • *
  • Posts: 2
    • View Profile
How to sort summary rows after grouping?
« on: April 18, 2017, 07:22:21 am »
Hi Team,

I am trying to find a good grid control for my new project, so I downloaded a evaluation version of PQ Grid and tested it, I found it's very good, it almost covers all my requests for grid. Now I have only one last request for grid, I want to sort summary rows after grouping, could you kindly tell me how to implement it ?

For example:
I have three columns in my grid, "PN"、"Program" and "Quantity", and multiple "PN" belong to a program. After grouping by Program, I try to sort "Quantity" column,  I found that grid only sorts the data rows, but the summary rows haven't been sorted.

Thank you

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6263
    • View Profile
Re: How to sort summary rows after grouping?
« Reply #1 on: April 18, 2017, 10:45:10 pm »
summary row can't be sorted because the following takes place in this order.

sorting on data rows -> grouping on data rows. -> availability of summary rows.

xyj1103

  • Newbie
  • *
  • Posts: 2
    • View Profile
Re: How to sort summary rows after grouping?
« Reply #2 on: April 19, 2017, 06:17:02 am »
I see, thanks for your reply.