on 2023 Nov 02 6:20 AM
In the P13N dialog displayed by pressing the "gear icon" on the Fiori screen,
Hide the part where you can select the tabs of "Column", "Sort", and "Filter" as shown in Figure (1),
I would like to change the layout to the one shown in Figure (2).
What do I need to fix to hide?
Thank you for your response.
Figure (1)
Figure (2)
Request clarification before answering.
this code works for me. you may have to adjust the code a bit based on your ui5 version.
onAfterRendering: function () { $('body').on('DOMNodeInserted', "div[role='dialog']", function (oEvent) { var target = oEvent.currentTarget; if ($("div[role='dialog']").has("div[role='tablist'][class='sapMITBHead']").length > 0) { var dialog = $("div[role='dialog']").has("div[role='tablist'][class='sapMITBHead']").control()[0]; $("div[role='tablist'][class='sapMITBHead']", target).css("visibility", "hidden"); dialog.attachAfterOpen(function () { $("div[role='tablist'][class='sapMITBHead']", target).css("visibility", "hidden"); }); } }); },
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
71 | |
18 | |
10 | |
7 | |
7 | |
4 | |
4 | |
4 | |
4 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.