Table of contents



Official Content

Sometimes in your applications, you need to change the flow of execution. Suppose you have a "wizard" inside your application, the user should not be able to go back to the different steps of the "wizard" as (s)he moves forward. In order to accomplish this, GeneXus provides a variety of events to manage the application flow, among which is the Back event.

Back event is a system event that defines an action to be performed when the back button is pressed. It is commonly used to change back button behavior or prompt a confirm dialog before calling the previous panel.

Syntax

Event Back
        <Event_code>
EndEvent

iOS Limitations

  • The body of the Back event is restricted to:
    1. Leaving it empty for disabling the back button.
    2. Programming a Return command only (available as of GeneXus 15 Upgrade 5), no other code allowed.

    The reason for this limitation is that Apple does not allow the developer to change the default behavior of a back action (e.g. display a message before back).
     
  • As of GeneXus 17, the limitation above does not apply when the panel is called with CallType.Popup and CallTargetSize different than Large (that is, when it has value Small, Medium or Default).
    In that case, Apple does allow the developer to control how the call is ended, and it is allowed to have a fully supportive Back event.
     
  • When a UI object is called with CallOption.Target = 'Blank', ensure that the object does not contain an action on the top-left side of the Application Bar (i.e. Position property = Custom (iOS) and top-left alignment) because the back button will be positioned in that place (1). If the developer situates a custom button in that place, the back button (and its swipe right gesture) will be disabled and it is the responsibility of the developer to implement the "back action" when it is desired.
    Notes:
    (1) By default as of GeneXus 15 Upgrade 5, previous versions do not display the back button in that case.

Examples

Warning: All examples work as described in Android and on iOS when the above limitations do not apply, but only examples 1) and 2) always work in iOS.

1) Disable the back button.

Event Back
EndEvent

2) Change the default behavior of the back action by using the return command.

Event Back
    Return
EndEvent

3) Display a confirm dialog before canceling the action.

Event Back
    Composite
      Confirm("Are you sure you want to return?") 
      Actions.Cancel()
    EndComposite
EndEvent

4) Call a Panel for Smart Devices on Back.

Event Back
      SDPanel.Call()
EndEvent

Notes

  • If you are trying to skip panels that had been already done on a wizard, it is recommended to use CallOptions.Type = Replace on the caller, instead of calling a panel on the Back event. With that you optimize the usage of the application stack, replacing old panels with new ones when navigating through the application.
     
  • When the Back event is not implemented, on each platform it behaves by default as an execution of the SDActions.Cancel() method. In such case, the subsequent code of the caller object won't be executed.
     
  • In contrast to the above point, if the Back event is implemented by using the Return command, the subsequent code of the caller object will be executed. For example, suppose you have two panels, A and B, and the panel A calls to panel B as follows.
Event 'Call_B' // 
  // ... do something before calling B
  B.Call()
  msg("After calling B")
  // ... do something else after calling B
EndEvent

If there is no Back event implemented on B or it is implemented by using the SDActions.Cancel() method, the message after the calling will not be executed. But if the Back event is implemented by using the Return command, the message will be displayed on the A panel.

  • Since GeneXus 16 Upgrade 3, the behavior of the back button has been changed for iOS. Now when tapping the default back button, it will cancel the actions still executing in the SDPanel. See SAC#45225.
  • The code after Return command will not be executed. 

 

Scope

Objects  Work With pattern and Work With objectPanel for Smart Devices
Languages  .NET, Java
Platforms Android, iOS

See also




Last update: February 2024 | © GeneXus. All rights reserved. GeneXus Powered by Globant