我在Angular 6应用程序中使用了Angular-Gridster2。每当我拖动网格时,它都会超越容器。我想将网格限制在移出容器时。
我尝试给予GridType:" fit"。但它行不通。
您可以设置gridType: GridType.Fixed
并将maxCols
和maxRows
选项设置为网格cols和网格行值。
this.options.maxCols = this.gridster.gridColumns.length;
this.options.maxRows = this.gridster.gridRows.length;
它在我这边工作。