JSTabPanel
Extends
JSComponentConstants Summarized
Constant used for creating accordion panel from tab panel, by setting its tabOrientation.
Constant used for creating a tab panel that does not show tabs, by setting its tabOrientation.
Constant used for creating horizontal split pane from tab panel, by setting its tabOrientation.
Constant used for creating vertical split pane from tab panel, by setting its tabOrientation.
Properties Summarized
Enables a component to stick to a specific side of form and/or to grow or shrink when a window is resized.
CSS position is a replacement for anchoring system making it more intuitive to place a component.
Method to be executed when the selected tab is changed in the tab panel or divider position is changed in split pane.
Specifies either the position of the tabs related to the tab panel or the type of tab-panel.
Methods Summarized
Adds a new tab with the text label and JSForm and JSRelation (can be null for unrelated).
Constants Detailed
ACCORDION_PANEL
Constant used for creating accordion panel from tab panel, by setting its tabOrientation.
Type Number
Sample
DEFAULT_ORIENTATION
Constant used for restoring a tab panel orientation to it's initial state.
Type Number
Sample
HIDE
Constant used for creating a tab panel that does not show tabs, by setting its tabOrientation.
Type Number
Sample
SPLIT_HORIZONTAL
Constant used for creating horizontal split pane from tab panel, by setting its tabOrientation.
Type Number
Sample
SPLIT_VERTICAL
Constant used for creating vertical split pane from tab panel, by setting its tabOrientation.
Type Number
Sample
Properties Detailed
anchors
Enables a component to stick to a specific side of form and/or to grow or shrink when a window is resized.
If opposite anchors are activated then the component with grow or shrink with the window. For example if Top and Bottom are activated, then the component will grow/shrink when the window is vertically resized. If Left and Right are activated then the component will grow/shrink when the window is horizontally resized.
If opposite anchors are not activated, then the component will keep a constant distance from the sides of the window which correspond to the activated anchors.
Type Number
Sample
background
The background color of the component.
Type String
Sample
borderType
The type, color and style of border of the component.
Type String
Sample
cssPosition
CSS position is a replacement for anchoring system making it more intuitive to place a component. CSS position should be set on form, an absolute position form can either work with anchoring or with css position. This is only working in NGClient.
Type CSSPosition
Sample
enabled
The enable state of the component, default true.
Type Boolean
Sample
fontType
The font type of the component.
Type String
Sample
foreground
The foreground color of the component.
Type String
Sample
formIndex
The Z index of this component. If two components overlap, then the component with higher Z index is displayed above the component with lower Z index.
Type Number
Sample
groupID
A String representing a group ID for this component. If several components have the same group ID then they belong to the same group of components. Using the group itself, all components can be disabled/enabled or made invisible/visible. The group id should be a javascript compatible identifier to allow access of the group in scripting.
Type String
Sample
height
The height in pixels of the component.
Type Number
Sample
name
The name of the component. Through this name it can also accessed in methods. Must be a valid javascript name. (no - in the name or start with number)
Type String
Sample
onChange
Method to be executed when the selected tab is changed in the tab panel or divider position is changed in split pane.
Type JSMethod
Sample
scrollTabs
Flag that tells how to arrange the tabs if they don't fit on a single line. If this flag is set, then the tabs will stay on a single line, but there will be the possibility to scroll them to the left and to the right. If this flag is not set, then the tabs will be arranged on multiple lines.
Type Boolean
Sample
styleClass
The name of the style class that should be applied to this component.
When defining style classes for specific component types, their names must be prefixed according to the type of the component. For example in order to define a class names 'fancy' for fields, in the style definition the class must be named 'field.fancy'. If it would be intended for labels, then it would be named 'label.fancy'. When specifying the class name for a component, the prefix is dropped however. Thus the field or the label will have its styleClass property set to 'fancy' only.
Type String
Sample
tabOrientation
Specifies either the position of the tabs related to the tab panel or the type of tab-panel. Can be one of SM_ALIGNMENT.(TOP, RIGHT, BOTTOM, LEFT), DEFAULT_ORIENTATION, HIDE, SPLIT_HORIZONTAL, SPLIT_VERTICAL, ACCORDION_PANEL.
Type Number
Sample
tabSeq
An index that specifies the position of the component in the tab sequence. The components are put into the tab sequence in increasing order of this property. A value of 0 means to use the default mechanism of building the tab sequence (based on their location on the form). A value of -2 means to remove the component from the tab sequence.
Type Number
Sample
transparent
Flag that tells if the component is transparent or not.
The default value is "false", that is the components are not transparent.
Type Boolean
Sample
visible
The visible property of the component, default true.
Type Boolean
Sample
width
The width in pixels of the component.
Type Number
Sample
x
The x coordinate of the component on the form.
Type Number
Sample
y
The y coordinate of the component on the form.
Type Number
Sample
Methods Detailed
getAttribute(name)
Get the value of an attribute of the element.
Parameters
String name the name of the attribute
Returns: Object
Sample
getAttributes()
Returns the attribute names of an element.
Returns: Array
Sample
getComment()
Returns the comment of this component.
Returns: String
Sample
getDesignTimeProperty(key)
Get a design-time property of an element.
Parameters
String key the name of the property
Returns: Object
Sample
getDesignTimePropertyNames()
Get the design-time properties of an element.
Returns: Array
Sample
getFormName()
Returns the name of the form. (may be empty string as well)
Returns: String The name of the form.
Sample
getTab(name)
Returns a JSTab instance representing the tab which has the specified name.
Parameters
String name The name of the tab that should be returned.
Returns: JSTab A JSTab instance represented the requested tab.
Sample
getTabs()
Returns an array of JSTab instances holding the tabs of the tab panel.
Returns: Array An array of JSTab instances representing all tabs of this tabpanel.
Sample
getUUID()
Returns the UUID of this component.
Returns: UUID
Sample
newTab(name, text, form)
Adds a new tab with the text label and JSForm.
Parameters
String name The name of the new tab.
String text The text to be displayed on the new tab.
JSForm form The JSForm instance that should be displayed in the new tab.
Returns: JSTab A JSTab instance representing the newly created and added tab.
Sample
newTab(name, text, form, relation)
Adds a new tab with the text label and JSForm and JSRelation (can be null for unrelated).
Parameters
String name The name of the new tab.
String text The text to be displayed on the new tab.
JSForm form The JSForm instance that should be displayed in the new tab.
Object relation A JSRelation object that relates the parent form with the form that will be displayed in the new tab.
Returns: JSTab A JSTab instance representing the newly created and added tab.
Sample
putDesignTimeProperty(key, value)
Set a design-time property of an element. Value should be primitive data (string, boolean or number). Complex values should be stringified before call.
Parameters
Returns: Object
Sample
removeAttribute(name)
Remove the attribute of an element.
Parameters
String name the name of the attribute
Returns: String the deleted attribute value
Sample
removeDesignTimeProperty(key)
Clear a design-time property of an element.
Parameters
String key the name of the property
Returns: Object
Sample
removeTab(name)
Removes the tab with the specified name from the tab panel.
Parameters
String name the name of the tab to be removed
Returns: void
Sample
setAttribute(name, value)
Set the attribute value of an element.
Parameters
Returns: void
Sample
Last updated
Was this helpful?