ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: EPM Solutions on November 29, 2017, 03:14:35 pm
-
Hello Team,
We want to show the total summary data in the first row of the grid.
We tried with the custom jquery code and able to show in the first row but it is overlapping the first row.
Jquery Code: $("#grid_Plan .pq-grid-summary").clone().appendTo("#grid_Plan .pq-grid-cont-outer .pq-grid-cont");
Please find attached screenshot for reference and give your suggestion asap.
-
Hello Team,
Please find attached image file for see our exact requirement.
-
I'm sorry this feature to show grandSummary at the top instead of bottom is not supported.
With jQuery ( non - standard workaround to alter pqgrid view ), summary view can be moved above the header with the below code snippet, but it doesn't match your requirement.
complete: function(){
var $grid = this.widget();
$grid.find(".pq-grid-summary").detach().appendTo($grid.find(".pq-grid-top"));
//$(".pq-grid-summary").detach().insertAfter(".pq-header-outer");
},
-
Hello Team,
Thanks for your valuable feedback :) :) :) :) :) :)
-
For v5, updated jQuery code is mentioned here:
https://paramquery.com/forum/index.php?topic=2796