Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    SplitPane resizeBars

    SmartClient Version: v10.1p_2016-02-24/Enterprise Deployment (built 2016-02-24)

    Hello, the SplitPane attribute showResizeBars controls whether two resize bars are shown in desktop mode: one between listPane and detailPane and another between navigationPane and 'right layout'.
    Is it possible to control the visibility of those resizeBars individually?
    I want to show only the resize bar between listPane and detailPane.

    #2
    Did you already try the AutoChild system (setting showResizeBar true or false)?

    Comment


      #3
      I've tried to add:

      Code:
          rightLayoutProperties: {showResizeBar: false},
          leftLayoutProperties: {showResizeBar: false},
      to the splitPane, but without success.

      I had to hide it using:
      SplitPane.leftLayout.setShowResizeBar(false);

      is it a supported approach?

      Comment


        #4
        Yes, it's legal to access an AutoChild like that and setShowResizeBar() is a documented API.

        Comment


          #5
          ok, thanks for the confirmation.

          Comment

          Working...
          X