0
ember-appでemberドラッグドロッププラグインを使用しています:「ember install ember-drag-drop」 アイテムをある場所から別の場所にドラッグしてもドロップできません入力フィールドアイテムを入力フィールドにドラッグできません
{{#draggable-object content=systemVariableInfo dragStartAction='myStartAction' dragEndAction='myEndAction'}}
{{item.name}}
{{/draggable-object}}
コントローラ::
myStartAction: function(content) {
console.log("content"+content);
//Content is the same as the content parameter set above
},
myEndAction: function(content) {
//Content is the same as the content parameter set above
},
この問題を解決する方法:
は、ここに私のコードです。