A newer version of this page is available. Switch to the current version.

jQuery Common - Object Structures - globalConfig

Specifies settings that affect all DevExtreme widgets.

import globalConfig from "devextreme/core/config"
Type:

Object

Pass this object to the DevExpress.config(globalConfig) method to apply these setting, or call the same method without argumants to get the object with current settings.

DevExpress.config({
    rtlEnabled: true,
    forceIsoDateParsing: false,
    //...
});

decimalSeparator

A decimal separator. Applies only if you do not use the Globalize or Intl library.

Type:

String

Default Value: '.'

defaultCurrency

The default currency. Accepts a 3-letter code specified by ISO 4217.

Type:

String

Default Value: 'USD'

NOTE
Reference Globalize or Intl if you specify a currency other than "USD".

If you use Intl, just assign the currency code to this field.

If you use Globalize, do the following:

  1. Get the currencies.json file that corresponds to your culture from one of the folders here.
  2. Load the contents of this file in your app using one of the methods described here.
  3. Assign the 3-letter code of the needed currency to this field.

    DevExpress.config({ defaultCurrency: 'EUR' });

See Also

forceIsoDateParsing

Specifies whether dates are parsed and serialized according to the ISO 8601 standard in all browsers.

Type:

Boolean

Default Value: true

The default value is true. This implies that widgets detect date-time values' format automatically. If the values are not provided to the widget yet, you need to specify the format explicitly using the widget's dateSerializationFormat option. When you assign false to the forceIsoDateParsing, a browser's resources are utilized to parse and serialize date-time values.

rtlEnabled

Specifies whether the widgets support a right-to-left representation. Available for individual widgets as well.

Type:

Boolean

Default Value: false

serverDecimalSeparator

The decimal separator that is used when submitting a value to the server.

Type:

String

Default Value: '.'

thousandsSeparator

A group separator. Applies only if you do not use the Globalize or Intl library.

Type:

String

Default Value: ','