任何人都知道我们如何禁用基于复选框的jQuery UI Draggable中的“Snap to Grid”。
我使用下面的代码动态启用对齐网格。
$(".WidgetCl").draggable({containment: '#editorWindow',scroll: true, snap: ".gridCol", snapMode: "both", stop :function() {$(this).trigger("stopdrag");}})
$(".WidgetCl").draggable("option", "grid", [ gridSize, gridSize ]);
谢谢, SONAL