Docs
API
  • update(grid:Object)

    function

    Fires whenever grid cells were updated with new data.

    Example

    
    var grid = new FancyGrid({
      ...
      events: [{
        update: function(grid){
          
        }
      }]
      ...
    });