Skip to content

Commit 6858113

Browse files
authored
Delete Popup Confirm section from messages.md
Removed Popup Confirm section from messages documentation.
1 parent da8d413 commit 6858113

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

docs/development/messages.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -109,24 +109,7 @@ METHOD z2ui5_if_app~main.
109109
110110
ENDMETHOD.
111111
```
112-
#### Popup Confirm
113-
If interaction is required, you can use `z2ui5_cl_pop_to_confirm`:
114-
```abap
115-
METHOD z2ui5_if_app~main.
116-
117-
IF client->check_on_init( ).
118-
client->nav_app_call( z2ui5_cl_pop_to_confirm=>factory( `Can you confirm this?` ) ).
119-
ENDIF.
120112

121-
CASE client->get( )-event.
122-
WHEN z2ui5_cl_pop_to_confirm=>cs_event-confirmed.
123-
client->message_box_display( `the result is confirmed` ).
124-
WHEN z2ui5_cl_pop_to_confirm=>cs_event-canceled.
125-
client->message_box_display( `the result is rejected` ).
126-
ENDCASE.
127-
128-
ENDMETHOD.
129-
```
130113
#### Uncatched Errors
131114
What happens if errors are uncaught? In this case, the default HTTP handler exception output is used. The processing is interrupted, and the user will need to refresh the browser. Use this only for unexpected behavior:
132115
```abap

0 commit comments

Comments
 (0)