Author Topic: grandSummary data in 1st row  (Read 1929 times)

chirag

  • Pro Enterprise
  • Newbie
  • *
  • Posts: 27
    • View Profile
grandSummary data in 1st row
« on: July 27, 2018, 01:56:10 pm »
Want to display grandsummary data in 1st row of grid with groupmodel.
Is there any way to do that?

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: grandSummary data in 1st row
« Reply #1 on: July 30, 2018, 09:54:13 am »
There is a similar question answered here:

https://paramquery.com/forum/index.php?topic=2448

Though not supported directly with API, for v5, it's doable with jQuery code ( workaround ).

Code: [Select]
           complete: function () {
var $grid = this.widget();
$grid.find(".pq-summary-outer").detach().prependTo( $grid.find(".pq-body-outer") );
           },
« Last Edit: July 30, 2018, 09:56:20 am by paramquery »