我在 manifest.json 的 extends 區域裏定義了一個普通的自定義按鈕,global 屬性爲 false:json
"extends": { "extensions": { "sap.ui.controllerExtensions": { "sap.suite.ui.generic.template.ListReport.view.ListReport": { "controllerName": "com.sap.jerry.jerryfioriapp.ext.controller.ListReportExtension", "sap.ui.generic.app": { "SEPMRA_C_PD_Product": { "EntitySet": "SEPMRA_C_PD_Product", "Actions": { "ActionName1": { "id" : "ActionName1", "text" : "Action Name One", "press" : "onCustomAction1", "requiresSelection": false, "global":false } } } } } } } },
外觀以下:app
global 屬性改爲 true 後:ui
button 的按鈕位置發生了改變,跑到頁面右上角了:spa
從 breakoutActions.fragment.xml 的實現源代碼裏發現,custom action 還有一個 determining 屬性:code
設成 true 以後,跑到屏幕下方 footer 區域了。雖然位置發生了變化,不影響點擊按鈕後的事件響應。xml
更多Jerry的原創文章,盡在:"汪子熙":
事件