Author Topic: How to dynamically sum the value in column > summary option  (Read 2429 times)

iamgsprabhu

  • Newbie
  • *
  • Posts: 21
    • View Profile
How to dynamically sum the value in column > summary option
« 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

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6265
    • View Profile
Re: How to dynamically sum the value in column > summary option
« Reply #1 on: September 28, 2016, 08:16:17 pm »
Code: [Select]
cellSave: function(){
$(this).pqGrid('refreshView');
},

iamgsprabhu

  • Newbie
  • *
  • Posts: 21
    • View Profile
Re: How to dynamically sum the value in column > summary option
« Reply #2 on: September 28, 2016, 11:26:38 pm »
Thank, perfect it worked.