SmartClient Version: SNAPSHOT_v11.1d_2017-03-23/Enterprise Development Only (built 2017-03-23)
Chrome on OSX
Hello please try this test case in the showcase:
If you resize the browser window, you'll see that if you shrink it slowly, than the flags remain visible because no scrollbar appears, otherwise the horizontal scrollbar appears.
Why is there that difference in behaviour?
Chrome on OSX
Hello please try this test case in the showcase:
Code:
isc.Label.create({ backgroundColor: "yellow", width: "100%", height:30 }).addChild( isc.HStack.create({ membersMargin: 15, members: [ isc.Img.create({ src: "flags/16/IT.png", layoutAlign: "center", localeValue: "it", size: 16 }), isc.Img.create({ src: "flags/16/UK.png", layoutAlign: "center", localeValue: "en", size: 16 }) ], height: 20, snapTo: "R", snapOffsetLeft: -30, width: 60 }) )
Why is there that difference in behaviour?
Comment