Page 3 of 3

Calculate Sum of List Elemets

Posted: Sun Nov 02, 2014 1:48 am
by sebastian

I'm having trouble calculating the totals in the grid box. What I mean by that it I have to click back and reload the page for all my totals to correctly add up whenever I add newly added food. Any suggestion? Image


Calculate Sum of List Elemets

Posted: Mon Nov 03, 2014 3:55 am
by Yurii Orishchuk

Hi Sebastian,

Not sure i understand you correctly.

But if you need just "udpate" list and numbers - you should just invoke datasource that's populate your grid.

You can do it with two general ways:
1 With event linking (action - "Invoke service").
2 With JS code:

pre

//Note: you should replace "dataSourceName" with your datasource name.
service.dataSourceName.execute({});

/pre

Regards.