所有面板均由小部件填充,没有边距。当我尝试将元素从一列(1)移到另一列(2)时,第2列的元素就跳出了董事会,例如:

如果列中没有小部件,我想禁止将小部件放置到某个位置。

我的代码:

   gridster = $(".gridster > ul").gridster({

          widget_margins: [mySizeDetector.blockMargin, mySizeDetector.blockMargin],
          widget_base_dimensions: [mySizeDetector.dx, mySizeDetector.dy], /*[width, height]*/
          min_cols: mySizeDetector.xCount,
          min_rows: mySizeDetector.yCount,
  }).data('gridster');

提前致谢!

最佳答案

我认为您可以将其限制在容器之外的 x轴中,但不能限制在 y轴中。

因为我们有min_colsmax_cols将其限制在 x轴中。但是我们只有min_rows ,而没有 max_rows

您可以引用文档:http://gridster.net/#documentation

10-07 18:08