RE: Freemarke, printing number with no commas

2013-07-30 Thread Skip
you point me to the minilang code that processes this hyperlink statement? Skip -Original Message- From: Scott Gray [mailto:scott.g...@hotwaxmedia.com] Sent: Monday, July 29, 2013 8:42 PM To: user@ofbiz.apache.org Subject: Re: Freemarke, printing number with no commas Check first that

Re: Freemarke, printing number with no commas

2013-07-29 Thread Scott Gray
Check first that the "days" variable is actually a number in the freemarker context. It could be that the formatting is happening earlier which would explain why your efforts to change the formatting aren't working (because the value may already be a string). Regards Scott On 30/07/2013, at 5

Freemarke, printing number with no commas

2013-07-29 Thread Skip
I have a hyperlink in a form that passes a numeric value to a bash script. the link is like: If you mouse over the link, the days variable is coming out like 3,313,222,978 This used to be displayed without the commas. I tried ${days?c}, ${days?string.computer}, and ${days?string('0'). All the