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
@@ -14,7 +14,7 @@ abap2UI5 has been successfully tested with tables containing large numbers of en
14
14
If you still want to optimize your app, consider the following tips:
15
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
-
* Declare public attributes in your app class only for variables displayed in the frontend. This helps prevent the framework from accessing unused values unnecessarily
17
+
* Declare public attributes in your app class only for variables displayed in the frontend. This helps prevent the framework from accessing unused values
18
18
* Follow standard ABAP best practices, such as reducing loops and using sorted tables, as you would in any other ABAP development project
0 commit comments