我正在寻找带有像gif一样的链接的拖放。我也检查了这个::
UI5Object.extend("DraggableDelegate", {
constructor: function (oControl) {
this.oControl = oControl;
},
onAfterRendering: function () {
this.oControl.$().draggable({
cancel: false
});
}
});
http://jsbin.com/loqeguridu/edit?html,output但是无法链接元素。
是否可以在SAP UI5中拖放链接?
答案 0 :(得分:0)
我找到了同样有用的东西.SAP UI 5使用具有拖放功能的D3.js。
<html>
<head>
<meta charset="utf-8">
<title>Directed Graph Editor</title>
<link rel="stylesheet" href="app.css">
</head>
<body></body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="app.js"></script>
</html>