Development tools : XUI editor : XUI widgets and containers : Containers Description : TabbedPane : ContentPane in a TabbedPane
  
ContentPane in a TabbedPane
The ContentPane in a TabbedPane is a container that contains the other widgets on the tab of the TabbedPane.
Implementation base
The ContentPane widget is a Dojo-based widget:
com.ibm.btt.dijit.layout.ContentPane
Properties for the ContentPane widget
 
Property
Description
id
The identifier for the widget.
selected
The selected property is a boolean property that specifies whether the ContentPane widget is in a selected state. This is an optional property.
title
The title property specifies the title that is displayed on the ContentPane widget. This is an optional property.
closable
The closable property specifies whether the ContentPane widget can be closed by a user. This is an optional property.
iconClass
The iconClass property specifies the style of the icon for content pane title. The icon is displayed on the left side of title. You can input the property manually or you can click the Browse button to display the style selection dialog and select the style. Use the Show Preload CSS check-box to control the dojo icon css display. The default of the Show Preload CSS check-box is checked. For the XUI Editor, the visual effect of the iconClass is not displayed in real-time, you can preview it using Page review.
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 TabbedPane that contains the ContentPane is false, the tab is rendered no matter whether it is displayed.
If the lazyLoading property value of the TabbedPane that contains the ContentPane is true, the tab is rendered only when it is displayed.
True
The tab is rendered only when it is displayed, regardless of the lazyLoading property value of the TabbedPane that contains the ContentPane.
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.
Restriction
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
TabbedPane