SmartClient Version: SNAPSHOT_v11.1d_2017-05-16/AllModules Development Only (built 2017-05-16)
Chrome on OSX
Hello, please try this test case:
You'll see that there's a white space between the tabset buttons and the pane:
Chrome on OSX
Hello, please try this test case:
Code:
isc.TabSet.create({
ID: "topTabSet",
autoDraw: false,
tabBarPosition: "bottom",
width: 400,
height: 200,
tabs: [
{title: "Blue", icon: "pieces/16/pawn_blue.png", iconSize:16,
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_blue.png"})},
{title: "Green", icon: "pieces/16/pawn_green.png", iconSize:16,
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_green.png"})}
]
});
Comment