TabPane Properties
The properties for TabPane widget are:

This is a skin property. This property specifies the skin that is to be applied when a TabPane is active and focused.
Syntax
activeFocusSkin
Type
String
Read/Write
Read + Write
Example
//Sample code to set the activeFocusSkin property of a TabPane widget. frmTab.myTab.activeFocusSkin="aFSkin";
Platform Availability
- Available in the IDE
- Available on all platforms

This is a skin property. Skin to be applied when a TabPane is active.
Syntax
activeSkin
Type
String
Read/Write
Read + Write
Example
//Sample code to set the activeSkin property of a TabPane widget. frmTab.myTab.activeSkin="aSkin";
Platform Availability
- Available in the IDE
- Available on all platforms

Indicates the selected Tabs indices. Index starts from 0. Specifies the Tab that must be displayed as the default open Tab.
Syntax
activeTabs
Type
Array
Read/Write
Read + Write
Remarks
The default value for this property is '1' (Tab 1 will be displayed as the Active Tab)
If you want to set another Tab as Active Tab, select that Tab in the drop-down list. Multiple indices in activeTabs is only appropriate for collapsible view currently. For all the remaining views,activeTabs always respects only one selected item i.e first element in the array.
Example
//Sample code to set the activeTabs property of a TabPane widget. frmTab.myTab.activeTabs=[0, 1, 2, 3, 4];
Platform Availability
- Available in the IDE
- Available on all platforms

The autogrowMode
property is used to set the height of the TabPane widget dynamically. The height of the TabPane widget will be the same as the height of the content inside the selected tab (including the height of the tab header).
This property is not applicable when the viewType property has the value: TABPANE_VIEW_TYPE_PAGEVIEW
.
Syntax
autogrowMode
Type
Constant
You can add any of the following constants to the autogrowMode property.
kony.flex.AUTOGROW_NONE
: When the autogrowMode property is assigned this value, the height of the TabPane widget does not increase dynamically. The default value is applied using the values in minHeight and maxHeight properties. This is the default value of this property.kony.flex.AUTOGROW_HEIGHT
: When the autogrowMode property is assigned this value, the height of the TabPane widget increases dynamically. The height of the TabPane widget is dependent on the height of the selected tab.
Read/Write
Read +Write
Remarks
NOTE: If one or all the child widgets height or other properties such as centerY, top, bottom, minHeight or maxHeight are used in determining the height given in percentage (%), then the autogrowMode property will not work for the selected tab and the height of the TabPane widget falls back to the default configuration value (220 dp).
Rules and priorities of autogrowMode property
- The autogrowMode property is ignored if the height property of the TabPane widget has a value.
- If the autogrowMode property is configured as kony.flex.AUTOGROW_HEIGHT, then preferred Size (based on content in the selected tab ) is computed, and min/max constraints are applied.
- In a TabPane widget with Collapsible view, when the value of the autogrowMode property is kony.flex.AUTOGROW_HEIGHT,the height of the widget is the total height of all the expanded tabs.
Example
//Sample code to set the autogrowMode property of a TabPane widget. //The TabPane widget will use the set height property to derive height frmHome.myTab1.autogrowMode=kony.flex.AUTOGROW_NONE; //The TabPane widget will use the height of the selected tab to derive height frmHome.autogrow1.autogrowMode=kony.flex.AUTOGROW_HEIGHT;
Platform Availability
- iOS
- Android
- Desktop Web

This property determines the bottom edge of the widget and is measured from the bottom bounds of the parent container.
The bottom property determines the position of the bottom edge of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. In freeform layout, the distance is measured from the bottom edge of the parent container. In flow-vertical layout, the value is ignored. In flow-horizontal layout, the value is ignored.
The bottom property is used only if the Height property is not provided.
Syntax
bottom
Type
String
Read/Write
Read + Write
Remarks
- The property determines the bottom edge of the widget and is measured from the bottom bounds of the parent container.
- If the layoutType is set as kony.flex.FLOW_VERTICAL, the bottom property is measured from the top edge of bottom sibling widget. The vertical space between two widgets is measured from bottom of the top sibling widget and the top of the bottom sibling widget.
Example
//Sample code to set the bottom property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.bottom = "50dp"; frmHome.widgetID.bottom = "10%"; frmHome.widgetID.bottom = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

This property determines the center of a widget measured from the left bounds of the parent container.
The centerX property determines the horizontal center of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. In freeform layout, the distance is measured from the left edge of the parent container. In flow-vertical layout, the distance is measured from the left edge of the parent container. In flow-horizontal layout, the distance is measured from the right edge of the previous sibling widget in the hierarchy.
Syntax
centerX
Type
String
Read/Write
Read + Write
Remarks
If the layoutType is set as kony.flex.FLOW_HORIZONTAL, the centerX property is measured from right edge of the left sibling widget.
Example
//Sample code to set the centerX property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.centerX = "50dp"; frmHome.widgetID.centerX = "10%"; frmHome.widgetID.centerX = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

This property determines the center of a widget measured from the top bounds of the parent container.
The centerY property determines the vertical center of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. In freeform layout, the distance is measured from the top edge of the parent container. In flow-horizontal layout, the distance is measured from the top edge of the parent container. In flow-vertical layout, the distance is measured from the bottom edge of the previous sibling widget in the hierarchy.
Syntax
centerY
Type
String
Read/Write
Read + Write
Remarks
If the layoutType is set as kony.flex.FLOW_VERTICAL, the centerY property is measured from bottom edge of the top sibling widget.
Example
//Sample code to set the centerY property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.centerY = "50dp"; frmHome.widgetID.centerY = "10%"; frmHome.widgetID.centerY = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

In Desktop Web applications, when you hover the mouse over any widget, a mouse pointer appears. Using the cursorType property in Visualizer, you can specify the type of the mouse pointer.
Syntax
cursorType
Type
String.
You must provide valid CSS cursor value such as wait, grab, help, etc. to the cursorType property.
Read/Write
Read + Write
Remarks
To add the cursorType
property using Quantum Visualizer in a Desktop Web application, follow these steps.
- In Quantum Visualizer, open the Desktop Web application. From the Project explorer, expand Responsive Web/ Desktop> Forms and select the form to which you need to make the changes.
- On the canvas, select the widget for which you want to specify the cursor type. For example, button.
- From the Properties panel, navigate to the Skin tab > Hover Skin tab.
You will find that the details of the hover skin is not enabled here. - Check the Enable option to add a hover skin to your widget.
The details and configurations of the hover skin is enabled. - Under the General section, for the Platform option, click the ellipsis icon.
The Fork Skin window appears. - In the Fork Skin window, for Desktop, check under HTML5 SPA.
- Click Ok. You have successfully forked your hover skin for Desktop Web application.
You can see that the Cursor Type property has been added under the General section. - Select a value from the drop-down list to set the Cursor Type for the widget.
Example
//This is a generic property and is applicable for many widgets.
/*The example provided is for the Button widget. Make the required changes in the example while using other widgets.*/
frmButton.myButton.cursorType = "wait";
Platform Availability
- Available in IDE
- Desktop Web

The enable
property is used to control the actionability of the widgets. In a scenario where you want to display a widget but not invoke any action on the widget, configure the enable
property to false to achieve it.
This is a constructor level property and applicable for all widgets in Quantum Visualizer.
Syntax
enable
Type
Boolean
Read/Write
Read + Write
Remarks
The default value of this property is true.
- When
enable
property is configured to true, the action associated with a widget can be invoked by the user in the application. - When
enable
property is configured to false, the action associated with a widget cannot be invoked by the user in the application.
Example
//This is a generic property and is applicable for many widgets.
/*The example provided is for the Button widget. Make the changes required in the example while using other widgets.*/
frmButton.myBtn.enable= true;
Platform Availability
- Android
- iOS
- Desktop web

It determines the height of the widget and measured along the y-axis.
The height property determines the height of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. For supported widgets, the height may be derived from either the widget or container’s contents by setting the height to “preferred”.
Syntax
height
Type
Number, String, and Constant
Read/Write
Read + Write
Remarks
Following are the available measurement options:
- %: Specifies the values in percentage relative to the parent dimensions.
- px: Specifies the values in terms of device hardware pixels.
- dp: Specifies the values in terms of device independent pixels.
- default: Specifies the default value of the widget.
- kony.flex.USE_PREFERED_SIZE: When this option is specified, the layout uses preferred height of the widget as height and preferred size of the widget is determined by the widget and may varies between platforms.
Example
/*Sample code to set the height property for a TabPane widget by using DP, Percentage and Pixels.*/ frmTab.myTab.height="50dp"; frmTab.myTab.height="10%"; frmTab.myTab.height="10px";
Platform Availability
- Available in the IDE
- iOS
- Android

id is a unique identifier of a TabPane consisting of alpha numeric characters. Every TabPane should have a unique id within a Form.
Syntax
id
Type
String
Read/Write
Read only
Example
//Defining the properties for TabPane with id:"tPane" var tabBasic = { id: "tPane", info: { key: "TabPane" }, activeSkin: "aSkin", isVisible: true, activeFocusSkin: "aFSkin", selectedTabIndex: 0, viewType: constants.TABPANE_VIEW_TYPE_TABVIEW, screenLevelWidget: true, retainPositionInTab: true, needPageIndicator: true, inactiveSkin: "inActiveSkin" }; var tabLayout = { padding: [5, 5, 5, 5], margin: [5, 5, 5, 5], paddingInPixel: true, marginInPixel: true, widgetAlignment: constants.WIDGET_ALIGN_TOP_LEFT, containerWeight: 70 }; var tabPSP = {}; //Creating the TabPane. var tabPane = new kony.ui.TabPane(tabBasic, tabLayout, tabPSP); //Reading id of the TabPane. alert("TabPane id is ::" + tabPane.id);
Platform Availability
- Available in the IDE
- Available on all platforms

Skin to be applied for all inactive tabs.
Syntax
inactiveSkin
Type
String
Read/Write
Read + Write
Example
//Sample code to set the inactiveSkin property for a TabPane widget. frmTab.myTab.inactiveSkin="inActiveSkin";
Platform Availability
- Available in the IDE
- Available on all platforms

A custom JS Object with the key value pairs that a developer can use to store the context with the widget.
Syntax
info
Type
JSObject
Read/Write
Read + Write
Remarks
This will help in avoiding the globals to most part of the programming.
This is a non-Constructor property. You cannot set this property through widget constructor. But you can always read and write data to it.
Info property can hold any JSObject. After assigning the JSObject to info property, the JSObject should not be modified. For example,
var inf = { a: "hello" }; widget.info = inf; //works widget.info.a = "hello world"; //This will not update the widget info a property to hello world. //widget.info.a will have old value as hello.
Example
//Sample code to set info property of a TabPane widget. frmTab.myTab.info = { key: "TabPane" }; //Reading the info of the TabPane widget. kony.print("TabPane widget info:" +frmTab.myTab.info);
Platform Availability
- Available on all platforms

Specifies whether the container is a master container.
Syntax
isMaster
Type
Boolean
Read/Write
Read Only after initialization.
Remarks
If the isMaster
property is true, the current widget is a master container and all of the rules and limitations of master containers apply to it. For more information, please see Masters in the Overviews section of this guide, as well as Using Masters in the Quantum Visualizer User Guide.
Your app can set the isMaster
property in this container's constructor. After that, this property is read-only.
Example
var isMasterContainer = tabPane1.isMaster;

This property controls the visibility of the TabPane on the form.
Syntax
isVisible
Type
Boolean
Read/Write
Read + Write
Remarks
The default value for this property is true.
If set to false, the widget is not displayed.
If set to true, the widget is displayed.
Example
//Sample code to set isVisible property of a TabPane widget. frmTab.myTab.isVisible=true;
NOTE: You can set the visibility of a widget dynamically from code using the setVisibility method.
Platform Availability
- Available in the IDE
- Available on all platforms

This property determines the lower left corner edge of the widget and is measured from the left bounds of the parent container.
The left property determines the position of the left edge of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. In freeform layout, the distance is measured from the left edge of the parent container. In flow-vertical layout, the distance is measured from the left edge of the parent container. In flow-horizontal layout, the distance is measured from the right edge of the previous sibling widget in the hierarchy.
Syntax
left
Type
String
Read/Write
Read + Write
Remarks
If the layoutType is set as kony.flex.FLOW_HORIZONTAL, the left property is measured from right edge of the left sibling widget.
Example
//Sample code to set the left property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.left = "50dp"; frmHome.widgetID.left = "10%"; frmHome.widgetID.left = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

This property specifies the maximum height of the widget and is applicable only when the height property is not specified.
The maxHeight property determines the maximum height of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. The maxHeight value overrides the preferred, or “autogrow” height, if the maxHeight is less than the derived content height of the widget.
Syntax
maxHeight
Type
Number
Read/Write
Read + Write
Example
//Sample code to set the maxHeight property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.maxHeight = "50dp"; frmHome.widgetID.maxHeight = "10%"; frmHome.widgetID.maxHeight = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

This property specifies the maximum width of the widget and is applicable only when the width property is not specified.
The Width property determines the maximum width of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. The maxWidth value overrides the preferred, or “autogrow” width, if the maxWidth is less than the derived content width of the widget.
Syntax
maxWidth
Type
Number
Read/Write
Read + Write
Example
//Sample code to set the maxWidth property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.maxWidth = "50dp"; frmHome.widgetID.maxWidth = "10%"; frmHome.widgetID.maxWidth = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

This property specifies the minimum height of the widget and is applicable only when the height property is not specified.
The minHeight property determines the minimum height of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. The minHeight value overrides the preferred, or “autogrow” height, if the minHeight is larger than the derived content height of the widget.
Syntax
minHeight
Type
Number
Read/Write
Read + Write
Example
//Sample code to set the minHeight property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.minHeight = "50dp"; frmHome.widgetID.minHeight = "10%"; frmHome.widgetID.minHeight = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

This property specifies the minimum width of the widget and is applicable only when the width property is not specified.
The minWidth property determines the minimum width of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. The minWidth value overrides the preferred, or “autogrow” width, if the minWidth is larger than the derived content width of the widget.
Syntax
minWidth
Type
Number
Read/Write
Read only
Example
//Sample code to set the minWidth property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.minWidth = "50dp"; frmHome.widgetID.minWidth = "10%"; frmHome.widgetID.minWidth = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

Specifies the skin for page indicator.
Syntax
pageSkin
Type
String
Read/Write
Read + Write
Remarks
The default value for this property is Skin Defaults ( blue color strip is applied for the page indicator).
This property is applicable only when viewType is set as TABPANE_VIEW_TYPE_PAGEVIEW and images are selected for pageOnDotImage and pageOffDotImage.

Example
//Sample code to set pageSkin property of a TabPane widget. frmTab.myTab.pageSkin="pSkin";
Platform Availability
- Available in the IDE
- iPhone
- iPad

Specifies the color of the progress indicator as white or grey.
Syntax
progressIndicatorColor
Type
Number
Remarks
The default value for this property is PROGRESS_INDICATOR_COLOR_WHITE.
The available options are:
- PROGRESS_INDICATOR_COLOR_WHITE: The progress indicator is white in color.
- PROGRESS_INDICATOR_COLOR_GREY: The progress indicator is grey in color.
To set the value through code, prefix the option with constants. such as constants.<option>.
Example
//Sample code to set progressIndicatorColor property of a TabPane widget. frmTab.myTab.progressIndicatorColor=constants.PROGRESS_INDICATOR_COLOR_GREY;
Platform Availability
- Available in the IDE
- iPhone
- iPad

This property is used to retain the content alignment property value, as it was defined.
NOTE: Locale-level configurations take priority when invalid values are given to this property, or if it is not defined.
The mirroring widget layout properties should be defined as follows.
function getIsFlexPositionalShouldMirror(widgetRetainFlexPositionPropertiesValue) { return (isI18nLayoutConfigEnabled && localeLayoutConfig[defaultLocale] ["mirrorFlexPositionalProperties"] == true && !widgetRetainFlexPositionPropertiesValue); }
The following table illustrates how widgets consider Local flag and Widget flag values.
Properties | Local Flag Value | Widget Flag Value | Action |
---|---|---|---|
Mirror/retain FlexPositionProperties | true | true | Use the designed layout from widget for all locales. Widget layout overrides everything else. |
Mirror/retain FlexPositionProperties | true | false | Use Mirror FlexPositionProperties since locale-level Mirror is true. |
Mirror/retain FlexPositionProperties | true | not specified | Use Mirror FlexPositionProperties since locale-level Mirror is true. |
Mirror/retain FlexPositionProperties | false | true | Use the designed layout from widget for all locales. Widget layout overrides everything else. |
Mirror/retain FlexPositionProperties | false | false | Use the Design/Model-specific default layout. |
Mirror/retain FlexPositionProperties | false | not specified | Use the Design/Model-specific default layout. |
Mirror/retain FlexPositionProperties | not specified | true | Use the designed layout from widget for all locales. Widget layout overrides everything else. |
Mirror/retain FlexPositionProperties | not specified | false | Use the Design/Model-specific default layout. |
Mirror/retain FlexPositionProperties | not specified | not specified | Use the Design/Model-specific default layout. |
Syntax
retainContentAlignment
Type
Boolean
Read/Write
No (only during widget-construction time)
Example
//This is a generic property that is applicable for various widgets. //Here, we have shown how to use the retainContentAlignment property for Button widget. /*You need to make a corresponding use of the retainContentAlignment property for other applicable widgets.*/ var btn = new kony.ui.Button({ "focusSkin": "defBtnFocus", "height": "50dp", "id": "myButton", "isVisible": true, "left": "0dp", "skin": "defBtnNormal", "text": "text always from top left", "top": "0dp", "width": "260dp", "zIndex": 1 }, { "contentAlignment": constants.CONTENT_ALIGN_TOP_LEFT, "displayText": true, "padding": [0, 0, 0, 0], "paddingInPixel": false, "retainFlexPositionProperties": false, "retainContentAlignment": true }, {});
Platform Availability
- Available in IDE
- iOS
- Android

This property is used to retain flex positional property values as they were defined. The flex positional properties are left, right, and padding.
NOTE: Locale-level configurations take priority when invalid values are given to this property, or if it is not defined.
The mirroring widget layout properties should be defined as follows.
function getIsFlexPositionalShouldMirror(widgetRetainFlexPositionPropertiesValue) { return (isI18nLayoutConfigEnabled && localeLayoutConfig[defaultLocale] ["mirrorFlexPositionalProperties"] == true && !widgetRetainFlexPositionPropertiesValue); }
The following table illustrates how widgets consider Local flag and Widget flag values.
Properties | Local Flag Value | Widget Flag Value | Action |
---|---|---|---|
Mirror/retain FlexPositionProperties | true | true | Use the designed layout from widget for all locales. Widget layout overrides everything else. |
Mirror/retain FlexPositionProperties | true | false | Use Mirror FlexPositionProperties since locale-level Mirror is true. |
Mirror/retain FlexPositionProperties | true | not specified | Use Mirror FlexPositionProperties since locale-level Mirror is true. |
Mirror/retain FlexPositionProperties | false | true | Use the designed layout from widget for all locales. Widget layout overrides everything else. |
Mirror/retain FlexPositionProperties | false | false | Use the Design/Model-specific default layout. |
Mirror/retain FlexPositionProperties | false | not specified | Use the Design/Model-specific default layout. |
Mirror/retain FlexPositionProperties | not specified | true | Use the designed layout from widget for all locales. Widget layout overrides everything else. |
Mirror/retain FlexPositionProperties | not specified | false | Use the Design/Model-specific default layout. |
Mirror/retain FlexPositionProperties | not specified | not specified | Use the Design/Model-specific default layout. |
Syntax
retainFlexPositionProperties
Type
Boolean
Read/Write
No (only during widget-construction time)
Example
//This is a generic property that is applicable for various widgets. //Here, we have shown how to use the retainFlexPositionProperties property for the Button widget. /*You need to make a corresponding use of the retainFlexPositionProperties property for other applicable widgets.*/ var btn = new kony.ui.Button({ "focusSkin": "defBtnFocus", "height": "50dp", "id": "myButton", "isVisible": true, "left": "0dp", "skin": "defBtnNormal", "text": "always left", "top": "0dp", "width": "260dp", "zIndex": 1 }, { "contentAlignment": constants.CONTENT_ALIGN_CENTER, "displayText": true, "padding": [0, 0, 0, 0], "paddingInPixel": false, "retainFlexPositionProperties": true, "retainContentAlignment": false }, {});
Platform Availability
- Available in IDE
- iOS
- Android

This property is used to convert Flow Horizontal Left to Flow Horizontal Right.
NOTE: Locale-level configurations take priority when invalid values are given to this property, or if it is not defined.
The mirroring widget layout properties should be defined as follows.
function getIsFlexPositionalShouldMirror(widgetRetainFlexPositionPropertiesValue){ return (isI18nLayoutConfigEnabled && localeLayoutConfig[defaultLocale] ["mirrorFlexPositionalProperties"] == true && !widgetRetainFlexPositionPropertiesValue); }
The following table illustrates how widgets consider Local flag and Widget flag values.
Properties | Local Flag Value | Widget Flag Value | Action |
---|---|---|---|
Mirror/retain FlexPositionProperties | true | true | Use the designed layout from widget for all locales. Widget layout overrides everything else. |
Mirror/retain FlexPositionProperties | true | false | Use Mirror FlexPositionProperties since locale-level Mirror is true. |
Mirror/retain FlexPositionProperties | true | not specified | Use Mirror FlexPositionProperties since locale-level Mirror is true. |
Mirror/retain FlexPositionProperties | false | true | Use the designed layout from widget for all locales. Widget layout overrides everything else. |
Mirror/retain FlexPositionProperties | false | false | Use the Design/Model-specific default layout. |
Mirror/retain FlexPositionProperties | false | not specified | Use the Design/Model-specific default layout. |
Mirror/retain FlexPositionProperties | not specified | true | Use the designed layout from widget for all locales. Widget layout overrides everything else. |
Mirror/retain FlexPositionProperties | not specified | false | Use the Design/Model-specific default layout. |
Mirror/retain FlexPositionProperties | not specified | not specified | Use the Design/Model-specific default layout. |
Syntax
retainFlowHorizontalAlignment
Type
Boolean
Read/Write
No (only during widget-construction time)
Example
//This is a generic property that is applicable for various widgets. //Here, we have shown how to use the retainFlowHorizontalAlignment property for Button widget. /*You need to make a corresponding use of the retainFlowHorizontalAlignment property for other applicable widgets. */ var btn = new kony.ui.Button({ "focusSkin": "defBtnFocus", "height": "50dp", "id": "myButton", "isVisible": true, "left": "0dp", "skin": "defBtnNormal", "text": "always left", "top": "0dp", "width": "260dp", "zIndex": 1 }, { "contentAlignment": constants.CONTENT_ALIGN_CENTER, "displayText": true, "padding": [0, 0, 0, 0], "paddingInPixel": false, "retainFlexPositionProperties": true, "retainContentAlignment": false, "retainFlowHorizontalAlignment ": false }, {});
Platform Availability
- Available in IDE
- iOS
- Android

Indicates whether each individual tab should retain its scroll position when the TabPanes are switched over.
Syntax
retainPositionInTab
Type
Boolean
Read/Write
Read + Write
Remarks
The default value for this property is false.
Example
//Sample code to set the retainPositionInTab property of a TabPane widget. frmTab.myTab.retainPositionInTab=true;
Platform Availability
- Available in the IDE
- Available on all platforms

This property determines the lower right corner of the widget and is measured from the right bounds of the parent container.
The right property determines the position of the right edge of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. In freeform layout, the distance is measured from the left edge of the parent container. In flow-vertical layout, value is ignored. In flow-horizontal layout, the value is ignored.
The right property is used only if the width property is not provided.
Syntax
right
Type
String
Read/Write
Read + Write
Remarks
If the layoutType is set as kony.flex.FLOW_HORIZONTAL, the right property is measured from left edge of the right sibling widget. The horizontal space between two widgets is measured from right of the left sibling widget and left of the right sibling widget.
Example
//Sample code to set the right property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.right = "50dp"; frmHome.widgetID.right = "10%"; frmHome.widgetID.right = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

Specifies whether the widget should occupy the whole container or not.
Syntax
screenLevelWidget
Type
Boolean
Remarks
The default value for this property is false.
If set to true, the widget occupies the whole container.
If set to false, the widget does not occupy the whole container.
You cannot place more than one TabPane as a screen level widget inside a form. If you choose to make a TabPane a Screen Level Widget, place only one TabPane in the form and do not place any other widgets in the form.
Do not set the screen level widget property to true for more than one widget in the form. If you have multiple widgets with this property set as true, there may be issues with how information is displayed along with some scrolling issues.
Example
//Sample code to set the screenLevelWidget property of a TabPane widget. frmTab.myTab.screenLevelWidget=true;
Platform Availability
- Available in the IDE
- Available on all platforms except Desktop Web.

This property enables you to scroll the TabPane to top on tapping a device’s status bar.
Syntax
scrollsToTop
Type
Boolean
Read/Write
Read + Write
Remarks
The default value for this property is false.
If this property is true for more than one widget, then this property is not applied to any of the widgets.
Example
//Sample code to set the scrollsToTop property of a TabPane widget. frmTab.myTab.scrollsToTop=true;
Platform Availability
- iPhone
- iPad

Specifies if the progress indicator must be displayed.
Syntax
showProgressIndicator
Type
Boolean
Remarks
The default value for this property is true.
If set to false, the progress indicator is not displayed on the widget.
If set to true, the progress indicator is displayed on the widget.
Example
//Sample code to set the showProgressIndicator property of a TabPane widget. frmTab.myTab.showProgressIndicator=true;
Platform Availability
- Available in the IDE
- iPhone
- iPad

Specifies the height of the Tab header in pixels.
Syntax
tabHeaderHeight
Type
Number
Read/Write
Read + Write
Remarks
The default value of this property is 64.
This property is applicable only when the viewType is set as TABPANE_VIEW_TYPE_TABVIEW.
Example
//Sample code to set the tabHeaderHeight property of a TabPane widget. frmTab.myTab.tabHeaderHeight=64;
Platform Availability
- Available in the IDE
- This property is available on Android/Android Tablet platform

Accepts reference to a box widget which represents a UI template for a custom tab header. The box template is allowed to have only Label, Link, Richtext, Button and Image widgets.
Syntax
tabHeaderTemplate
Type
kony.ui.Box
Read/Write
Read + Write
Platform Availability
- Available in the IDE
- Available on Desktop Web

This property determines the top edge of the widget and measured from the top bounds of the parent container.
The top property determines the position of the top edge of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. In freeform layout, the distance is measured from the top edge of the parent container. In flow-vertical layout, the distance is measured from the bottom edge of the previous sibling widget in the hierarchy. In flow-horizontal layout, the distance is measured from the left edge of the parent container.
Syntax
top
Type
String
Read/Write
Read + Write
Remarks
If the layoutType is set as kony.flex.FLOW_VERTICAL, the top property is measured from the bottom edge of the top sibling widget. The vertical space between two widgets is measured from bottom of the top sibling widget and top of the bottom sibling widget.
Example
//Sample code to set the top property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.top = "50dp"; frmHome.widgetID.top = "10%"; frmHome.widgetID.top = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

The view configuration for different view types.
Syntax
viewConfig
Type
JSObject
Read/Write
Read + Write
Remarks
Below are the view configuration properties when the viewType is set as:
TABPANE_VIEW_TYPE_COLLAPSIBLEVIEW:
The viewConfig property accepts JSObject with the below key-value pairs:
- expandedImage: String value or an image Object (kony.image) indicates the name of the image when the tab is expanded. You can create an image Object by using kony.image Namespace functions.
- collapsedImage: String value or an image Object (kony.image) iindicates the name of the image when the tab is collapsed. You can create an image Object by using kony.image Namespace functions.
- imagePosition: Specifies the position of the image on the tab. This can be set to TABPANE_COLLAPSIBLE_IMAGE_POSITION_LEFT or TABPANE_COLLAPSIBLE_IMAGE_POSITION_RIGHT.
- tabNameAlignment: Specifies the alignment to the text on the tab. This can be set to TABPANE_COLLAPSIBLE_TABNAME_ALIGNMENT_LEFT or TABPANE_COLLAPSIBLE_TABNAME_ALIGNMENT_RIGHT.
- toggleTabs: Boolean value indicates whether the content of a tab will still be displayed if you click on some other tab.
TABPANE_VIEW_TYPE_PAGEVIEW:
The viewConfig property accepts a JSObject with the below key-value pairs.
- needPageIndicator - Boolean value indicates whether the page indicator required or not.
- pageOnDotImage - Name of the image. String identifier for a local resource or an image Object (kony.image). Valid only if needPageIndicator is true. You can create an image Object by using kony.image Namespace functions.
On iOS 14 (and later) devices, the page control displays an opaque version of the image provided for the pageOnDotImage, without the colors. Support to apply colors to page dots has been provided by the iOS native platform and can be implemented in Quantum Visualizer by using the pageOnTintColor property in the preShow event.
The default color for the pageOnTintColor is an opaque white dot.NOTE: Support for the pageOnTintColor property is available from the following releases:- Quantum Visualizer V9 Service Pack 3 Fixpack 7.
- Quantum Visualizer V9 Service Pack 2 Fixpack 39.
- Quantum Visualizer V9 Service Pack 1 Fixpack 46.
When the TabPane is rendered, the size of the dots is decided by the size of the image provided for the pageOnDotImage property. The width and height of the page dot is the same as the resolution of the image passed as the input. If you do not provide an image, the default dot is displayed. To display a dot with a custom size, the image for the dot must be set in the widget properties.
- pageOffDotImage - Name of the image. String identifier for a local resource or an image Object (kony.image). Valid only if needPageIndicator is true. You can create an image Object by using kony.image Namespace functions.
On iOS 14 (and later) devices, the page control displays an opaque version of the image provided for the pageOffDotImage, without the colors. Support to apply colors to page dots has been provided by the iOS native platform and can be implemented in Quantum Visualizer by using the pageOffTintColor property in the preShow event.
The default color for the pageOffTintColor is a translucent white (or gray) dot.NOTE: Support for the pageOffTintColor property is available from the following releases:- Quantum Visualizer V9 Service Pack 3 Fixpack 7.
- Quantum Visualizer V9 Service Pack 2 Fixpack 39.
- Quantum Visualizer V9 Service Pack 1 Fixpack 46.
When the TabPane is rendered, the size of the dots is decided by the size of the image provided for the pageOffDotImage property. The width and height of the page dot is the same as the resolution of the image passed as the input. If you do not provide an image, the default dot is displayed. To display a dot with a custom size, the image for the dot must be set in the widget properties.
TABPANE_VIEW_TYPE_PANORAMAVIEW:
The viewConfig property accepts a JSObject with the below key-value pairs.
- panoramaTitle - String value indicates the title of the panorama.
- panoramaTitleImage - String value indicates the name of the image to be displayed in the title.
- panoramaImage - String value indicates the name of the panorama image.
TABPANE_VIEW_TYPE_TABVIEW:
The viewConfig property accepts JSObject with the below key-value pairs.
- headerPosition: Specifies the position of the header.It can be set to :TAB_HEADER_POSITION_TOP, TAB_HEADER_POSITION_BOTTOM, TAB_HEADER_POSITION_LEFT, and TAB_HEADER_POSITION_RIGHT.
- headerContainerWeight: Specifies percentage of width to be allocated to the header. Type: Number, Default: 50%.
Example
//Sample code to set the viewConfig property of a TabPane widget. frmTab.myTab.viewConfig = { "panoramaTitle": "panorama", "panoramaTitleImage": "p.png", "panoramaImage": "par.png" };
Example using image objects:
var imgobj1 = getImageFromLocalStorage("calbtn.png"); var imgobj2 = getImageFromLocalStorage("zoomout.png"); var viewConfig1 = { "collapsibleViewConfig": { "collapsedImage": imgobj1, "collapsedimage": imgobj1, "expandedImage": imgobj2, "expandedimage": imgobj2, "imagePosition": constants.TABPANE_COLLAPSIBLE_IMAGE_POSITION_RIGHT, "imageposition": "right", "tabNameAlignment": constants.TABPANE_COLLAPSIBLE_TABNAME_ALIGNMENT_LEFT, "tabnamealignment": "left", "toggleTabs": false, "toggletabs": false }, "pageViewConfig": { "needPageIndicator": true, "pageOffDotImage": imgobj1, "pageOnDotImage": imgobj2 if (this.view.tab.viewType == constants.TABPANE_VIEW_TYPE_PAGEVIEW) { var newViewConfig = Object.create(this.view.tab.viewConfig); newViewConfig.pageViewConfig.pageOnTintColor = "ffb812"; newViewConfig.pageViewConfig.pageOffTintColor = "bababa"; this.view.tab.viewConfig = newViewConfig; } }, "tabViewConfig": { "headerPosition": constants.TAB_HEADER_POSITION_TOP, "image1": imgobj1, "image2": imgobj2 }, };
Platform Availability
Available in the IDE
- iOS
- Android

Specifies the view type the Tab Pane should display.
Syntax
viewType
Type
Number
Read/Write
Read + Write
Remarks
The default value for this property is TABPANE_VIEW_TYPE_TABVIEW.
The available options are:
- TABPANE_VIEW_TYPE_TABVIEW
- TABPANE_VIEW_TYPE_COLLAPSIBLEVIEW
- TABPANE_VIEW_TYPE_PAGEVIEW (supported on iOS, Android, and Desktop Web only)
Sections are supported only when the viewType is set as TABPANE_VIEW_TYPE_TABVIEW.
TABPANE_VIEW_TYPE_PAGEVIEW is always screen level irrespective of whether the value for screenLevelWidget property is set to true or false.
Example
//Sample code to set the viewType property of a TabPane widget. frmTab.myTab.viewType= constants.TABPANE_VIEW_TYPE_TABVIEW;
Platform Availability
- Available in the IDE
- Available on all platforms

This property determines the width of the widget and is measured along the x-axis.
The width property determines the width of the widget’s bounding box. The value may be set using DP (Device Independent Pixels), Percentage, or Pixels. For supported widgets, the width may be derived from either the widget or container’s contents by setting the width to “preferred”.
Syntax
width
Type
Number, String, and Constant
Read/Write
Read + Write
Remarks
Following are the options that can be used as units of width:
- %: Specifies the values in percentage relative to the parent dimensions.
- px: Specifies the values in terms of device hardware pixels.
- dp: Specifies the values in terms of device independent pixels.
- default: Specifies the default value of the widget.
- kony.flex.USE_PREFERED_SIZE: When this option is specified, the layout uses preferred width of the widget as width and preferred size of the widget is determined by the widget and may varies between platforms.
Example
//Sample code to set the width property for widgets by using DP, Percentage and Pixels. frmHome.widgetID.width = "50dp"; frmHome.widgetID.width = "10%"; frmHome.widgetID.width = "10px";
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web

This property specifies the stack order of a widget. A widget with a higher zIndex is always in front of a widget with a lower zIndex.
The zIndex property is used to set the stack, or layer order of a widget. Widgets with higher values will appear “over”, or “on top of” widgets with lower values. Widgets layered over other widgets will override any interaction events tied to widgets beneath. Modifying the zIndex does not modify the order of the widgets in the Quantum Visualizer hierarchy, inside of a flexContainer or form. The zIndex property accepts only positive values.
Syntax
zIndex
Type
Number
Read/Write
Read + Write
Remarks
The default value for this property is 1.
NOTE: Modifying the zIndex does not modify the order of the widgets inside the FlexContainer. If zIndex is same for group of overlapping widgets then widget order decides the order of overlapping. The last added widget is displayed on top.
Prior to the V9 SP2 FP7 release, the default value for the Z Index was 1. When developers imported any third-party libraries with the Z index set as Auto, content overflow was disabled as the value of Auto is less than 1.
NOTE: The Z Index value Auto is supported only when the Enable JS Library mode is configured as unchecked.
For existing components, the value of the Z Index is configured as 1 for the Native channel. For the Responsive Web channel, the Z Index will be set as Custom with 1 as the value.
For new components, the value of the Z Index is configured as 1 for the Native channel. For the Responsive Web channel, the Z Index will be set as Auto or 1 based on the project level settings.
NOTE: If ModalContainer property is set to true in any of the FlexContainer widget, the Z Index value of that container and all of its parent containers should be set to Custom.
kony.flex.ZINDEX_AUTO : Constant to configure the Z Index value as auto programmatically.
//Sample code to set the ZIndex value to Auto
var flx = new kony.ui.FlexContainer({ "id": "flx" "zIndex": kony.flex.ZINDEX_AUTO });
//Sample code to set the ZIndex value to Auto flx.zIndex = kony.flex.ZINDEX_AUTO;
Example
//Sample code to set the zIndex property for widgets.
frmHome.widgetID.zIndex = 300;
Platform Availability
- Available in the IDE
- iOS
- Android
- Desktop Web