我已经建立了一个表单设计应用程序
dsmorse(dsmorse.github.io/gridster.js/)
grister,我不能在超过15行中添加小部件。我尝试了gridster.options.max_rows=60;
,但在我的情况下却不起作用。
最佳答案
将max_rows设置为所需行的数量
例
gridster[{0}] = $('#grTer_{0} ul').gridster({
widget_base_dimensions: ['auto', 55],
autogenerate_stylesheet: true,
min_cols: 1,
max_cols: 12,
max_rows: 140,
extra_rows : 40,
widget_margins: [30, 30]
}).data('gridster');
默认情况下max_rows最多为15行
关于javascript - 如何在Gridster中添加超过15行(dsmorse gridster.js),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35129674/