on 2020 Dec 17 6:56 AM
Hi All,
Could you please help me in finding a way to remove the send an email button from My Inbox 2.0 Fiori App.
Request clarification before answering.
Hi,
if you extend the app, you can use the extHookChangeFooterButtons in order to remove it. Check this sample code:
extHookChangeFooterButtons: function(objHdrFtr) {
if (objHdrFtr.oEmailSettings !== "undefined") {
objHdrFtr.oJamOptions = null;
objHdrFtr.oEmailSettings = null;
}
return objHdrFtr;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
97 | |
12 | |
10 | |
8 | |
6 | |
4 | |
4 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.