Development tools : XUI editor : XUI widgets and containers : Containers Description : TabbedPane
  
TabbedPane
The TabbedPane has multiple panes and shows only one pane at a time.
The TabbedPane container contains a ContentPane in a TabbedPane on each tab.
Implementation base
The TabbedPane widget is a Dojo-based widget:
com.ibm.btt.dijit.layout.TabContainer
Properties for the TabbedPane widget
 
Property
Description
styleClass
The styleClass property specifies the name of the CSS style ( also known as CSS style class) associated with the widget. This property is set by selecting a style from the CSS styles table in the Style tab of the Properties view. If you do not configure the styleClass property, the default style is used instead. For more detailed information, refer to Setting CSS style to widgets.
id
The identifier for the widget.
hint
A description of the widget that is displayed as a tooltip for a user. This property has multilingual support.
visibility
The visibility property specifies how a widget is displayed on a GUI. Only the following values can be specified for the visibility property of the TabbedPane widget:
visible
The widget is displayed on a GUI and users are able to interact with the widget.
gone
The widget is not displayed on a GUI, and it does not occupy space on the GUI.
tabPosition
The tabPosition property specifies the location of the tabs on the TabbedPane widget. The following values are available to be specified for the tabPosition property:
top
bottom
left
right
The default value is top.
disabled
For disabled TabbedPane, user cannot switch to another tab by clicking the tab button, but the contents have no effect.
width
The width property specifies the width of the widget. This property is set in the Appearance tab of the Properties view.
height
The height property specifies the height of the widget. This property is set in the Appearance tab of the Properties view.
generateLayout
The generateLayout property specifies whether to generate the HTML layout. The default value is true.
generateInlineStyle
The generateInlineStyle property specifies whether to generate the inline styles. The default value is true.
lazyLoading
The lazyLoading property specifies whether to render a tab only when it is displayed:
False
This is the default value.
If the lazyLoading property value of the ContentPane on the tab is false, the tab is rendered no matter whether it is displayed.
If the lazyLoading property value of the ContentPane on the tab is true, the tab is rendered only when it is displayed.
True
Each tab of the TabbedPane is rendered only when it is displayed, regardless of the lazyLoading property value of the ContentPane on the tab.
Note If the lazyLoading property value for the TabbedPane or the ContentPane in the TabbedPane is true, and ECA rules are applied on the current XUI page, you must select Use ECA loader to load ECA Rules in the properties for the XUI Editor.
When the lazyLoading capability is enabled, if you save the current XUI page as the XUI Include widget, the ECA rules and actions on the XUI page do not work in the XUI Include widget.
See
ECA editor support
Go up to
Containers Description