13.2.4 Debugging Dynamic Actions
Learn how to debug dynamic actions in APEX.
- About Debugging Dynamic Actions
Learn about debugging dynamic actions. - Debugging Dynamic Actions
Debug an dynamic action by viewing the page in runtime and clicking Debug on the Developer toolbar.
Parent topic: Managing Dynamic Actions
13.2.4.1 About Debugging Dynamic Actions
Learn about debugging dynamic actions.
Debugging dynamic actions in APEX is slightly different than other debugging, because much of the processing done with the dynamic action framework is done on the client, not on the server. To debug dynamic actions, APEX outputs debug information to the browser's JavaScript console if your browser supports it (for example Firefox with Firebug installed shows the debug information in its Console pane). The debug information tells you when an action of a dynamic action fires, along with some additional information about the dynamic action, in the following format:
Dynamic Action Fired: [Dynamic Action name] ([Action name]) {JavaScript object
containing all Dynamic Action information}
This format enables you to identify the dynamic action name, the action name which indicates which action is triggered, and the JavaScript object which contains a lot of information about the dynamic action, including the when element, the affected elements, the event object, and any data that may be associated with the dynamic action.
Parent topic: Debugging Dynamic Actions
13.2.4.2 Debugging Dynamic Actions
Debug an dynamic action by viewing the page in runtime and clicking Debug on the Developer toolbar.
To debug a dynamic action:
Parent topic: Debugging Dynamic Actions