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
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
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
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
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
List: WORepetition {
list = prices;
item = aPrice;
}
BigDecimal runningTotal;
public BigDecimal runningTotal() {
if (list.objectAtIndex(0) == aPrice) {
runningTotal = aPrice;
} else {
runningTotal = runningTotal.add(aPrice);
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