我想限制网格线只出现在我在配置中指定的最大行数和列数(12*12),但是我可以看到比指定布局更多的网格线,这让用户感到困惑。
这是配置
this.options = {
gridType: GridType.Fixed,
displayGrid: DisplayGrid.Always,
draggable: { enabled: false },
resizable: { enabled: false },
pushDirections: { north: false, east: true, south: false, west: true },
swap: true,
enableEmptyCellDrop: true,
emptyCellDropCallback: this.emptyCellClick.bind(this),
fixedRowHeight: 90,
fixedColWidth: 90,
maxCols:12,
maxRows:12,
}