SAP UI5 CHIP hide fullscreen icon
Hello!
I had to close the full-screen display on a chip, I have not found anything suitable, the solution was as follows:
To hide the full screen display on a chip, it is necessary in the controller application, add the following code:
onAfterRendering: function() {
$(“#”+this.getView().getParent().getId().split(“–“)[0] + “–laneView–fullscreen”).hide();
},
Thank you for your help Diaghilev Ivan
Very useful!
Thanks!