Docs
API
  • decimalSeparator

    String

    Localization decimal separator.

    It is used if in column format is number.

    Example

    
    var grid = new FancyGrid({
      title: 'Localization - French',
      lang: {
        paging: {
          first: 'Erste Seite',
          last: 'letzte Seite',
          prev: 'vorherige Seite',
          next: 'nächste Seite',
          info: 'Anzeige Eintrag [0] - [1] von [2]',
          page: 'Seite',
          of: 'von [0]'
        },
        loadingText: 'Lade Daten ...',
        thousandSeparator: '.',
        decimalSeparator: ',',
        ...
      },
      ...
    });