TabPane Events
TabPane has the following events associated with it:

This event takes a callback as an input that is invoked by the platform when the user presses a key (on the keyboard).
Syntax
onKeyPress(eventObject, eventPayload, context)
Input Parameters
eventObject:
An Object that contains the instance of the widget that triggered the onKeyPress event.
eventPayload:
An Object that contains information about the keyboard interactions. Based on the key that the user presses, the value of the eventPayload varies as follows:
Key | Description |
---|---|
altKey | Returns a boolean value. The value is true when the Alt key (Option key on macOS systems) is pressed. |
ctrlKey | Returns a boolean value. The value is true when the Ctrl key is pressed. |
shiftKey | Returns a boolean value. The value is true when the Shift key is pressed. |
metaKey | Returns a boolean value. The value is true when the meta key ( windows key ⊞ on windows systems, command key ⌘ on macOS systems) is pressed. |
capsLock | Returns a boolean value. The value is true when the capsLock key is turned on. |
keyCode | Returns the ASCII code of the key pressed . |
preventDefault | Returns a function. This function can be invoked to prevent the default action of the widget. |
context:
An Object that represents information about the row that contains the target widget that triggered the onKeyPress event.
rowIndex: The index of the row that contains the target widget for a Segment widget.
itemIndex: The index of the row that contains the target widget for a CollectionView widget.
sectionIndex: The index of the section that contains the target widget.
widgetInfo: The widget reference of the Segment or CollectionView widget.
Read/Write
Read + Write
Remarks
- The onKeyPress event is not linked with native keypress event, i.e both the events are different.
- For widgets (such as TextBox and TextArea) that support both the onKeyDown and onKeyPress events, the onKeyDown event takes higher priority.
If a widget has both the onKeyDown and onKeyPress events configured, the onKeyDown event is invoked first, followed by the onKeyPress event. - The Web Framework provides support for both the onKeyDown and onKeyPress events on the TextBox and TextArea widgets. However, Temenos recommends that you use only one of the events for a widget.
Example
/*This event is triggered in both TextBox and TextArea widgets for Android platform.*/ /*This example demonstrates how to set an onKeyPress event callback to a Button widget that is placed inside form frmButton.myButton.onKeyPress = onKeyPressCallBack; function onKeyPressCallBack(eventObject, eventPayload) { console.log('onKeyPress event triggered'); }
Platform Availability
- Available in the IDE
- Available on the Responsive Web platform

Event callback invoked when the tab is clicked. This event is triggered when you expand or collapse any Tab.
Syntax
onTabClick(tabPane,tabIndex)
Parameters
tabpane
Reference to the TabPane widget that raised the event.
tabIndex
Specifies the Index number of a tab in the tabPane.
Read/Write
Read + Write
Example
//Sample code to set the onTabClick event callback to a Link widget. frmTab.myTab.onTabClick=onTabClickCallback; function onTabClickCallback(tabpane, tabIndex){ //Write your logic here. }
Platform Availability
- Available in the IDE
- Available on all platforms.