Hi ,
I am having tabset problems in firefox browser for button which are now clickable,
I had tried with demo example at location http://www.smartclient.com/index.jsp#tabsOrientation
I had just modified the position of button, this works in IE but not in firefox,
I am having tabset problems in firefox browser for button which are now clickable,
I had tried with demo example at location http://www.smartclient.com/index.jsp#tabsOrientation
I had just modified the position of button, this works in IE but not in firefox,
Code:
isc.TabSet.create({
ID: "topTabSet",
tabBarPosition: "top",
width: 400,
height: 200,
tabs: [
{title: "Blue", icon: "pieces/16/pawn_blue.png",
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_blue.png"})},
{title: "Green", icon: "pieces/16/pawn_green.png",
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_green.png"})}
]
});
isc.TabSet.create({
ID:"leftTabSet",
tabBarPosition: "left",
width: 400,
height: 200,
top: 250,
tabs: [
{icon: "pieces/16/pawn_blue.png",
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_blue.png"})},
{icon: "pieces/16/pawn_green.png",
pane: isc.Img.create({autoDraw: false, width: 48, height: 48, src: "pieces/48/pawn_green.png"})}
]
});
isc.IButton.create({
title: "Select Blue",
top: 215,
click: function () {
topTabSet.selectTab(0);
leftTabSet.selectTab(0);
}
});
isc.IButton.create({
title: "Select Green",
top: 5,
left: 170,
click: function () {
topTabSet.selectTab(1);
leftTabSet.selectTab(1);
}
});
Comment