我想向我的列表组件触发上下文菜单事件。我正在使用以下编码,但无法正常工作。我在哪里做错了?请让我知道如何正确使用此事件。这是我的代码; 我的清单组件:
<List
id="commentListView"
items="{/TicketItemModel/COMMENTS}"
visible="{/TicketCommentListVisibility}"
mode="SingleSelectMaster"
includeItemInSelection="true"
class="todo-comment-list">
{/* Items here.. */}
</List>
我的controller.js文件:
this.getView().byId("commentListView").attachBeforeOpenContextMenu(??,_this.handleShowCommentContextMenu(),??);
我不确定应该将哪些参数传递给函数
这是我调用的主要功能代码:
handleShowCommentContextMenu:function(oEvent){
var _this = this;
if(oEvent){
var listItemBase = oEvent.getSource();
if(!_this.popupMenu){
_this.popupMenu = new Menu({
items:[
new sap.ui.unified.MenuItem({
text:"Settings",
select:function(){
}
}),
]
})
_this.getView().addDependent(_this.popupMenu);
}
var eDock = sap.ui.core.Popup.Dock;
_this.popupMenu.open(false, listItemBase, eDock.BeginTop, eDock.BeginBottom, listItemBase);
}
}
答案 0 :(得分:0)
您可以在此处阅读:
https://sapui5.hana.ondemand.com/1.54.8/#/api/sap.m.ListBase/methods/attachBeforeOpenContextMenu
该函数的参数如下:
attachBeforeOpenContextMenu(oData ?, fnFunction,oListener?)
第一个和第三个参数后面的?
是指示符,它们是可选的。
这意味着即使没有它们,您的代码也可以正常工作。
oListener
是一个对象(如链接中的文本所示)将事件置于上下文中。您甚至在代码(sap.m.ListBase
)中使用默认值oEvent
用于调用事件处理程序的上下文对象。默认为此sap.m.ListBase本身
oData
是oListener
的模型方面。 oListener
是将事件放入上下文的控制元素,而oData
对象是将事件放入上下文的数据。
我希望我能为您澄清一些事情。
答案 1 :(得分:0)
为了打开列表项上的上下文菜单。首先,您需要定义菜单。然后,您可以将beforeOpenContextMenu事件设置为XmlView中的列表组件。
_this.getView().byId("commentListView").setContextMenu(new Menu({
items:[
new sap.ui.unified.MenuItem({
text:"Settings",
select:function(){
}
}),
]
}))