我需要在拖動時檢索附加到standardListItem的一些數據。我正在使用jQuery-UI拖動來處理拖動。我做了以下操作:如何將一個mouseenter事件監聽器附加到sap.m.StandardListItem?
var oItemTemplate = new sap.m.StandardListItem();
oItemTemplate .bindProperty("title", "ListModel>oLabel");
oItemTemplate .data("usefulListData","ListModel>EdmType");
oItemTemplate .addStyleClass("Draggable");
oItemTemplate .setType(sap.m.ListType.Active);
oItemTemplate .attachPress(function(){
console.log(this.data("usefulListData"));
console.log("item pressed");
});
但數據檢索只在單擊StandardListItem時有效,拖動元素時我不工作。所以,想法是在mouseenter上附加數據檢索,如何附加一個事件監聽器的mouseenter事件。
感謝 穆罕默德·阿里·
我可以使用僅在我的XML-View中寫入的attachBrowserEvent方法嗎?看到我的問題http://stackoverflow.com/questions/31245260/attach-browser-event-to-a-control-using-xml-view – padibro