-
4 May 2012 10:16 AM #1
space thousand number separator
space thousand number separator
Hi All!
Ext provides thousand separator for numbers (comma or point). I need space as thousand separator and point as decimal.
Can it be made with number formatting?
-
4 May 2012 10:42 AM #2
You could create a function:
Regards,Code:> val = 25000.30; > fmtVal = Ext.util.Format.number(val, '0,000.00'); > fmtSpace = fmtVal.replace(',',' '); ? "25 000.30"
Scott
-
4 May 2012 11:29 AM #3


Reply With Quote