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: update action calls to client->action->gen( )
Reflect the new z2ui5_if_action interface in the cookbook: the client `action`
method is now an `action` interface reference whose `gen( )` method carries the
same signature. All examples and prose now use `client->action->gen( )`.
https://claude.ai/code/session_0123tcSwjTWxoGTG6YossyaN
Copy file name to clipboardExpand all lines: docs/cookbook/browser_interaction/title.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ METHOD z2ui5_if_app~main.
23
23
)->stringify( ) ).
24
24
25
25
WHEN client->check_on_event( `RENAME` ).
26
-
client->action(
26
+
client->action->gen(
27
27
val = client->cs_event-set_title
28
28
t_arg = VALUE #( ( `Invoice 4711` ) ) ).
29
29
@@ -37,7 +37,7 @@ METHOD z2ui5_if_app~main.
37
37
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