SmartClient Version: SNAPSHOT_v12.1d_2019-03-26/AllModules Development Only (built 2019-03-26)
SmartClient Version: v11.1p_2019-03-19/AllModules Development Only (built 2019-03-19)
Chrome on OSX
Hello, I'm trying to add some controls in the TabSet.tabBar, and I want to have a control aligned to the left, near the tabs, and the others aligned to the right.
At first this seems to work:
as the result is what I was looking for:
But if you try a slightly longer title in the second tab, ie 'Foobar', the result is this:
is it a bug? Or am I trying something not supported?
SmartClient Version: v11.1p_2019-03-19/AllModules Development Only (built 2019-03-19)
Chrome on OSX
Hello, I'm trying to add some controls in the TabSet.tabBar, and I want to have a control aligned to the left, near the tabs, and the others aligned to the right.
At first this seems to work:
Code:
isc.TabSet.create({ ID: "topTabSet", tabBarPosition: "top", tabBarAlign:"left", width: 600, height: 200, tabs: [ {title: "Status", pane: isc.Canvas.create({autoDraw: false, ID:"statusPane"}) }, {title: "Foo", pane: isc.Canvas.create({autoDraw: false, ID:"fooPane"}) } ], tabBarControls:[ isc.IButton.create({ autoDraw: false, ID:"button1", title:"Button 1" }), isc.LayoutSpacer.create({width:"100%"}), isc.IButton.create({ autoDraw: false, ID:"button2", title:"Button 2" }), "tabScroller", "tabPicker" ] });
But if you try a slightly longer title in the second tab, ie 'Foobar', the result is this:
is it a bug? Or am I trying something not supported?
Comment