SmartClient Version: SNAPSHOT_v11.1d_2017-04-06/Enterprise Development Only (built 2017-04-06)
Chrome on OSX Sierra
Hello, please try this test case in the showcase:
Then shrink the feature explorer right layout (using the feature explorer resize bar), until its width is less than the 720px of the drawPane.
You'll see that the horizontal scrollbar appears, but the left side of the drawPane is clipped.
Same effect if you set and initial width for the drawPane bigger than the available space.
I know that the showcase is a special environment, but I have this exact problem in my application.
Chrome on OSX Sierra
Hello, please try this test case in the showcase:
Code:
var mainPane = isc.DrawPane.create({ autoDraw: false, showEdges: true, width: 720, height: 475 }); var commonProps = { autoDraw: true, drawPane: mainPane, canDrag: true, titleRotationMode: "neverRotate" }; isc.DrawRect.create({ left: 200, top: 300, width: 150, height: 100, title: "Rectangle" }, commonProps); isc.VLayout.create({ width: "100%",height:"100%", overflow: "auto", defaultLayoutAlign: "center", margin: 5, showEdges:false, members: [mainPane] });
You'll see that the horizontal scrollbar appears, but the left side of the drawPane is clipped.
Same effect if you set and initial width for the drawPane bigger than the available space.
I know that the showcase is a special environment, but I have this exact problem in my application.
Comment