Subscriber portal
Indicates that the user has changed the selected item in the combo box control.
public int selectionChange()
The following example shows how the selectionChange method can be overridden to display an Infolog message when the user changes the selected item in the combo box control.
public int selectionChange() { int ret; info("The selection has changed."); ret = super(); return ret; }