Docs
API
  • dropNotOkCls

    String

    CSS classname for tooltip when hover on not droppable zone.

    Example

    
    ...
    renderTo: 'mainOffice',
    gridToGrid: {
      dropNoOkCls: 'my-drop-not-ok',
      dragGroup: 'dd-group-main-office',
      dropGroup: 'dd-group-new-office',
      onDrop: function(items, rowIndex){
        this.remove(items);
          
        FancyGrid.get('newOffice').insert(rowIndex, items);
      }
    },
    ...
    ...
    renderTo: 'newOffice',
    gridToGrid: {
      dragGroup: 'dd-group-new-office',
      dropGroup: 'dd-group-main-office',
      onDrop: function(items, rowIndex){
        this.remove(items);
        
        FancyGrid.get('mainOffice').insert(rowIndex, items);
      }
    },
    

    Default

    
    'fancy-drop-not-ok'