tiberiuzuld/angular-gridster2

Gridster drag continue event for item is not available

Opened this issue · 1 comments

In the draggable state drag continue event is not available how to check if an item is dragging?

You may try to use a function under GridsterConfig. itemChangeCallback?: (item: GridsterItem, itemComponent: GridsterItemComponentInterface) => void;

  options!: GridsterConfig;


    private initDashboardOption() {
    this.options = {
      ...thisSetting,
      itemChangeCallback: () => {
        <<  HERE TO check if an item is dragging >>
      },    
    };
  }