Search code examples
zkborder-layout

How do I hide the west-Area on a borderlayout?


When I hide the borderlayout I do not want a frame displayed, is there anyway to do this?


Solution

  • You can hide the frame/border on the parts of a borderlayout by setting border="none".

    
    <borderlayout>
      <west border="none">
      </west>
    </borderlayout>
    
    

    It's in the ZK borderlayout example, though not very explicit. Notice the "Here is a non-border" panel.


    PS: Welcome to StackOverflow. In the future please be more specific with your questions; you'll get much better interest and more useful responses.