You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Docs: use follow_up_action( val, t_arg ) instead of eF strings
Follow the framework change that folds action->gen into follow_up_action:
examples now pass the frontend event and arguments directly via
follow_up_action( val = ... t_arg = ... ) rather than assembling an .eF( )
string by hand. follow_up_action.md documents both ways (event+args and raw
JS); action.md stays the obsolete page and shows the plain rename as the
migration.
vitepress build passes (no dead links).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015vTnxZtHiAd4tiqMvxFdgJ
Copy file name to clipboardExpand all lines: docs/cookbook/browser_interaction/focus.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ This is useful for guided data entry, barcode scanning, or any flow where the ne
25
25
26
26
#### Basic Usage
27
27
28
-
After processing an event, call `client->follow_up_action( )` with the `SET_FOCUS` frontend event and the id of the input to focus next. (The value bindings on the inputs are omitted here to keep the focus logic clear — see [Barcode Scanning](/cookbook/device_capabilities/barcode_scanning) for the same form with bound inputs.)
28
+
After processing an event, call `client->follow_up_action( )` with `cs_event-set_focus` and the id of the input to focus next. (The value bindings on the inputs are omitted here to keep the focus logic clear — see [Barcode Scanning](/cookbook/device_capabilities/barcode_scanning) for the same form with bound inputs.)
When the app runs inside an SAP Fiori Launchpad shell, use the dedicated `set_title_launchpad` event instead. It forwards the title to the shell's `ShellUIService` rather than setting `document.title`:
0 commit comments