我遇到了jquery UI控件的问题。我开发了一个带有引导控件的运行时表单Web应用程序,但我不能将控件拖到任何地方。例如,如何在标签内容中拖动控件?
我认为这里的问题需要改变。
$(".sidebar-nav .box").draggable({
connectToSortable: ".column",
helper: "clone",
handle: ".drag",
drag: function (e, t) {
t.helper.width(400)
},
stop: function () {
handleJsIds()
}
});