vote up 0 vote down star

I have an object - call this "order" This object has a property - Total. This is type - decimal (it's a money value)

In my template i have something like:

Order Total: $order.Total GBP

However, in the resulting merge, it comes out as:

Order Total: 3.4000 GBP

for 3.40

Is there any way of telling nvelocity to format it as 2 decimal places??

flag

49% accept rate

1 Answer

vote up 1 vote down

I found it out:

Can use ToString("N2") for example:

Order Total: $order.Total.ToString("N2") GBP

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.