For example:
I need to pull the total amount of orders but only form the records that order_Status=='PENDING"
(I want to use the same DataView data in various places in my page, it is a dashboard page)
I can just create as many instances of the DataView I need and set the filter on each DataView according to my needs. (that’s what I did)
But I’m just wondering if we could use client-side formatters to get the desired results
It is better to calculations on server side instead of client-side?
I always had in mind that if (in a high-traffic site) 100 users are on-line performing the same task it would be harder than pass the task to each user’s terminal…
Something like that is what I had in mind for client-side but the formatters wasn’t available there
Anyway, thanks a lot for your suggestions, I will try to have them in mind!!
You’re right @Antony … It works if I hand code it (because after applying the where formatter, the sum formatter comes just with no parameter but I added by hand)