Search
Link Search Menu Expand Document
Kony Quantum is now HCL Volt MX. See Revised Terminology. Current Quantum users, see the important note about API naming.

SlidingContainer Events

The SlidingContainer Widget has the following events associated with it.


commandPanelClosed Event

The event is invoked by the platform when the command panel is closed.

Syntax

commandPanelClosed()

Read/Write

Read + Write

Example

//Sample code to set the commandPanelClosed event callback to a SlidingContainer widget.
frmSlidingC.mySlidingC.commandPanelClosed=commandPanelClosedCallBack;
function commandPanelClosedCallBack(){
  //Write your logic here.
 }

Platform Availability

Windows


commandPanelClosing Event

The event is invoked by the platform when the command panel is about to close.

Syntax

commandPanelClosing()

Read/Write

Read + Write

Example

//Sample code to set the commandPanelClosing event callback to a SlidingContainer widget.
frmSlidingC.mySlidingC.commandPanelClosing=commandPanelClosingCallBack;
function commandPanelClosingCallBack(){
  //Write your logic here.
 }

Platform Availability

Windows