Skip to content

Commit fd0cdc5

Browse files
authored
Update view.md
1 parent 8eeae90 commit fd0cdc5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docs/development/view.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ METHOD z2ui5_if_app~main.
1818
1919
ENDMETHOD.
2020
```
21-
You can use any UI5 control available in the UI5 SDK. However, working with XML can become cumbersome. A more efficient approach is to use the `Z2UI5_CL_XML_VIEW` class. Here's an improved version of the code using this class:
21+
You can use any UI5 control available in the UI5 SDK. However, working with XML can become cumbersome. A more efficient approach is to use the `Z2UI5_CL_XML_VIEW` class. Here's an improved version of the code above:
2222
```abap
2323
METHOD z2ui5_if_app~main.
2424
@@ -31,6 +31,9 @@ You can use any UI5 control available in the UI5 SDK. However, working with XML
3131
3232
ENDMETHOD.
3333
```
34-
Check the API of `Z2UI5_CL_XML_VIEW` and leverage code completion to easily find the correct controls and properties. Additionally, it’s recommended to explore the sample repository, which contains pre-written XML examples for most use cases. These examples are available for easy copy-pasting and can be adjusted to suit your specific needs.
34+
Tips for Usage:
35+
* Explore the API: Check the API of Z2UI5_CL_XML_VIEW and use code completion to easily identify the available controls and properties.
36+
* Sample Repository: Refer to the sample repository for pre-written XML examples that you can copy, paste, and adjust as needed.
3537

36-
Currently, this setup is quite static. In the next section, we will explore how to bind and exchange data between the view and the app logic.
38+
#### What’s Next?
39+
This current setup is static. In the next section, we will explore how to bind and exchange data between the view and the application logic.

0 commit comments

Comments
 (0)