我在我的angular 6应用程序中使用angular-gridster2。每当我拖动网格时,它就会超出容器。我想限制网格移出容器。
我尝试给gridType:'fit'。但它不起作用。
答案 0 :(得分:1)
您可以设置gridType: GridType.Fixed
然后将maxCols
和maxRows
选项设置为网格列和网格行值。
this.options.maxCols = this.gridster.gridColumns.length;
this.options.maxRows = this.gridster.gridRows.length;
在我这边工作。