修复栅格容器

时间:2019-06-27 15:47:06

标签: angular6 frontend angular-gridster2

我在我的angular 6应用程序中使用angular-gridster2。每当我拖动网格时,它就会超出容器。我想限制网格移出容器。

我尝试给gridType:'fit'。但它不起作用。

1 个答案:

答案 0 :(得分:1)

您可以设置gridType: GridType.Fixed

然后将maxColsmaxRows选项设置为网格列和网格行值。

this.options.maxCols = this.gridster.gridColumns.length;
this.options.maxRows = this.gridster.gridRows.length;

在我这边工作。