Skip to content

Commit a19400a

Browse files
authored
Update concept.md
1 parent 1da43d0 commit a19400a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/technical/concept.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,14 @@ In standard UI5 behavior, updating the XML View typically triggers a full re-ren
187187
Consider this example:
188188

189189
```abap
190-
CLASS z2ui5_cl_app_partial_rendering DEFINITION PUBLIC CREATE PUBLIC.
190+
CLASS z2ui5_cl_app_partial_rerendering DEFINITION PUBLIC CREATE PUBLIC.
191191
PUBLIC SECTION.
192192
INTERFACES z2ui5_if_app.
193193
DATA text TYPE string.
194194
DATA partly TYPE abap_bool.
195195
ENDCLASS.
196196
197-
CLASS z2ui5_cl_app_partial_rendering IMPLEMENTATION.
197+
CLASS z2ui5_cl_app_partial_rerendering IMPLEMENTATION.
198198
METHOD z2ui5_if_app~main.
199199
200200
text = text && ` text`.
@@ -216,7 +216,7 @@ The illustration below shows the difference between a full re-render and a targe
216216
<p align="center">
217217
<img src="https://github.com/user-attachments/assets/79a8c531-b9a0-4bf4-bb1c-7d9019ef8707" width="500" />
218218
<br/>
219-
<em>Partly HTML Rerendering via View Model - Only relevant DOM parts are rerenderd, preserving UI state</em>
219+
<em>Partly HTML Rerendering via View Model Updates - Only relevant DOM parts are rerenderd, preserving UI state</em>
220220
</p>
221221

222222
Thanks to UI5’s powerful data binding mechanism, only the modified DOM elements are updated. This preserves the current UI state — such as input focus — and ensures a smooth, uninterrupted user experience. The XML View and View Model concept make UI5 a perfect team player for the UI5 Over-the-Wire approach combining the strengths of ABAP and UI5 — without the complexity of full client-side re-renders.

0 commit comments

Comments
 (0)