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
Copy file name to clipboardExpand all lines: docs/configuration/performance.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ abap2UI5 has been successfully tested with tables containing large numbers of en
12
12
13
13
### Suggestions
14
14
If you still want to optimize your app, consider the following tips:
15
-
* Only call the `client->view_display` method when absolutely necessary. Instead, prefer using `client->model_update` so that the UI5 framework only re-renders the controls that have actually changed.
15
+
* Only call the `client->view_display` method when necessary. Instead, prefer using `client->model_update` so that the UI5 framework only re-renders the controls that have actually changed.
16
16
* Prefer using `client->bind` and use `client->bind_edit` only when users need to make changes that are processed in the backend. Otherwise, it leads to unnecessary data transfers.
17
17
* Use public attributes in your app class only for variables that are also displayed in the frontend. Otherwise, the framework may unnecessarily access unused values.
18
18
* Follow standard ABAP best practices: reduce loops, use sorted tables, etc., just as you would with ALV.
0 commit comments