Hi. There is some strange behaviour of the Ext.util.Format::currency method when in have the currency symbol on the left side and have a negative number:

Code:



alert(Ext.util.Format.currency(-12500.32, '€', 2, false));

I would expect as result "€-12500,32" but instead of the result is "-€12500,32".

The notation looks a little bit weird.. I'm not sure if this is a bug or a feature..