ParamQuery grid support forum

General Category => Help for ParamQuery Grid (free version) => Topic started by: iamgsprabhu on September 28, 2016, 08:00:59 pm

Title: How to dynamically sum the value in column > summary option
Post by: iamgsprabhu on September 28, 2016, 08:00:59 pm
I have a grid where I want to display the sum of value entered for a group. I am currently able to display the sum at the beginning, but if I change the value it does not recalculate it.

How can I achieve this ?

please advise.

thx
Prabhu
Title: Re: How to dynamically sum the value in column > summary option
Post by: paramvir on September 28, 2016, 08:16:17 pm
Code: [Select]
cellSave: function(){
$(this).pqGrid('refreshView');
},
Title: Re: How to dynamically sum the value in column > summary option
Post by: iamgsprabhu on September 28, 2016, 11:26:38 pm
Thank, perfect it worked.