Docs
API
  • droppable

    Boolean|String

    Allow dropping data from another grid.

    Example: Allow dropping from any grid

    
    var grid = new FancyGrid({
      droppable: true,
      ...
    });
    

    Example: Allow dropping by conditions

    
    var grid = new FancyGrid({
      droppable: function(fromGrid, rows){
        if(fromGrid.id === 'myGrid'){
          return true;
        }
      },
      ...
    });
    

    Default

    
    false