[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.birt] Re: report data not being set in onFetch in BIRT 2.3.1
|
- From: brian.summers@xxxxxxxxxxxx (Brian Summers)
- Date: Wed, 15 Oct 2008 05:24:14 +0000 (UTC)
- Newsgroups: eclipse.birt
- Organization: Eclipse
- User-agent: NewsPortal/0.36 (http://florian-amrhein.de/newsportal)
Hi Jason,
My onFetch() contains this:
var dec = new BigDecimal(row["TOTAL"]);
row["TOTALTEXT"] = priceFormatter.formatPrice(dec);
The priceFormatter is something that formats a price according to values
previously obtained from the database. It's functionality in a jar that
I have added.
The column where I don't see any results is the one that is set by the
above line.
If I add a debug line after the priceFormatter line I can see that it
works OK and is being executed... the result just doesn't show up on the
report as it did in 2.2.1.
Any clues?
Thanks,
Brian