修复 gridster 容器
Fix gridster container
我在我的 angular 6 应用程序中使用 angular-gridster2。每当我拖动网格时,它都会超出容器。我想限制网格移出我的容器。
我试过给gridType:'fit'。但它不起作用。
可以设置gridType: GridType.Fixed
并为网格列和网格行值设置 maxCols
和 maxRows
选项。
this.options.maxCols = this.gridster.gridColumns.length;
this.options.maxRows = this.gridster.gridRows.length;
在我这边行得通
我在我的 angular 6 应用程序中使用 angular-gridster2。每当我拖动网格时,它都会超出容器。我想限制网格移出我的容器。
我试过给gridType:'fit'。但它不起作用。
可以设置gridType: GridType.Fixed
并为网格列和网格行值设置 maxCols
和 maxRows
选项。
this.options.maxCols = this.gridster.gridColumns.length;
this.options.maxRows = this.gridster.gridRows.length;
在我这边行得通