简体   繁体   中英

Formatting numbers through ExtJS or javascript

I am using string.Format() to format some numbers at the server side.

double dd = 15453434.5345;
            Console.Write(String.Format("{0:N0}", dd));
            Console.Read();

Above code generates:

15,453,435

The number is rounded off and we can see comma separator. How can I achieve this using ExtJS.

Take a look at Ext.util.Format .

This class is a centralized place for formatting functions. It includes functions to format various different types of data, such as text, dates and numeric values.

Options include:

  • thousandSeparator
  • decimalSeparator
  • currenyPrecision
  • currencySign
  • currencyAtEnd

Example:

Ext.util.Format.thousandSeparator = ',';
Ext.util.Format.decimalSeparator = ',';
var num = (15453434.5345).toFixed(0);

//And then:
Ext.util.Format.number(num, '0,000.00'); //outputs 15,453,435

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM