Skip to Content
Author's profile photo Nik Viskunov

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:/wp-content/uploads/2015/04/123_687007.png

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

Assigned Tags

      1 Comment
      You must be Logged on to comment or reply to a post.
      Author's profile photo Former Member
      Former Member

      Very useful!

      Thanks!