Docs
API
  • save()

    If grid data proxy has property autoSave: false than
    to save changes on server it requires to run method grid.save().

    Example

    
    var grid = new FancyGrid({
      ...
      data: {
        proxy: {
          autoSave: false,
          ...
        }
      },
      ...
    });
    
    function buttonHandler(){
      grid.save();
    }