Docs
API
  • i18n

    String

    i18n property is localization value that set grid lang params to chosen language words.
    In case it needs to rewrite some params use property lang.
    i18n does not affect on contextmenu items. You can set your own text item values, sample in doc link contextmenu.

    Example

    
    var grid = new FancyGrid({
      title: 'Localization - French',
      i18n: 'fr',
      lang: {  
        date: {
          read: 'm/d/Y'
        }
      }
      ...
    });
    

    Default

    
    'en-US'
    

    If you include full-build of library from self domain then it requires to set path to local modules dir.

    
      Fancy.MODULESDIR = '/fancygrid/modules/';
    

    Values