Re: D2W Displaying (running) totals underneath lists

2012-09-06 Thread Ramsey Gurley
On Sep 6, 2012, at 4:39 AM, Markus Ruggiero wrote: > > On 05.09.2012, at 09:20, Markus Ruggiero wrote: > >> Hi listers, >> >> In a modern D2W app I want to display a row of totals underneath a list. How >> could I do this? The list might be batched. What if I wanted to have batch >> totals a

Re: D2W Displaying (running) totals underneath lists

2012-09-06 Thread Jesse Tayler
Ted was just asking this very same question, including the list page part. my suggestion was to subclass the list you are using, copy bindings and html and add whatever you need -- lastly, write a rule to ensure the component you like gets used. make sense? maybe someone else has something els

Re: D2W Displaying (running) totals underneath lists

2012-09-06 Thread Markus Ruggiero
On 05.09.2012, at 09:20, Markus Ruggiero wrote: > Hi listers, > > In a modern D2W app I want to display a row of totals underneath a list. How > could I do this? The list might be batched. What if I wanted to have batch > totals and total totals? > Nobody ever had such a requirement? No id

D2W Displaying (running) totals underneath lists

2012-09-05 Thread Markus Ruggiero
Hi listers, In a modern D2W app I want to display a row of totals underneath a list. How could I do this? The list might be batched. What if I wanted to have batch totals and total totals? Thanks ---markus--- ___ Do not post admin requests to the lis

Re: Running Totals

2007-07-30 Thread Ken Anderson
Daniel, I've done something like this. Basically, I create fields in the repetition where the name of the field (as in the 'name' field in the static inspector) is a well-known value with an index, like 'calcField0', 'calcField1', etc. Then, I load up some javascript that will recalcula

Re: Running Totals

2007-07-30 Thread Chuck Hill
List: WORepetition { list = prices; item = aPrice; } BigDecimal runningTotal; public BigDecimal runningTotal() { if (list.objectAtIndex(0) == aPrice) { runningTotal = aPrice; } else { runningTotal = runningTotal.add(aPrice);

Running Totals

2007-07-30 Thread Daniel Brajkovic
Does anyone know of a way I can have a running total in WO repetition? Maybe in Javascript? Because I'd want it to be pretty dynamic. Change a column 2 value and all the column 3 values would change appropriately. For the life of me i just can't figure out a way. For Example Data1 $12.0