Skip to content

Commit 0a60fdf

Browse files
authored
update
1 parent 322a65b commit 0a60fdf

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

docs/.vitepress/config.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ export default defineConfig({
125125
text: 'Addons', link: '/addons/addons', collapsed: true, items: [
126126
{ text: 'RTTI', link: '/addons/srtti' },
127127
{ text: 'Layouts, Variants', link: '/addons/layout' },
128-
{ text: 'Popups', link: '/addons/popup' },
129128
{ text: 'Logging, BAL', link: '/addons/logging' },
130129
{ text: 'XLSX', link: '/addons/xlsx' },
131130
{ text: 'JS Libraries', link: '/addons/ext_js' },
131+
{ text: 'More Popups', link: '/addons/popup' },
132132
{ text: 'Apps, Community', link: '/addons/apps' },
133133
]
134134
},
@@ -146,8 +146,6 @@ export default defineConfig({
146146
{ text: 'Technical Background', link: '/advanced/insights/insights' , items: [
147147
{ text: 'General', link: '/advanced/insights/insights' },
148148
{ text: 'open-abap', link: '/advanced/insights/open_abap' },
149-
// { text: 'CI/CD', link: '/insights/ci' },
150-
// { text: 'abaplint', link: '/insights/ci' },
151149
]
152150
},
153151

docs/addons/layout.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ outline: [2, 6]
55

66
<i class="fa-brands fa-github"></i> [Layout-Variant Addon on GitHub](https://github.com/abap2UI5-addons/layout-variant-management)<br>
77

8-
In classical SAP GUI development, one of the most commonly used features was the variant management for selection screens and the layout management of ALVs. Persisting input values and user-specific settings for table output were important features. This addons tries to bring back the most common functionalities:
8+
In classic SAP GUI development, one of the most frequently used features was variant management for selection screens and layout management for ALVs. Storing input values and user-specific table output settings greatly enhances the user experience. This add-on brings back these essential functionalities:
99

1010
#### Setup Layouts
1111
<img width="700" alt="Google Chrome 2024-09-09 12 14 58" src="https://github.com/user-attachments/assets/5e5f9291-3817-4a66-a886-cd0ac0c6e175">

docs/addons/srtti.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
<i class="fa-brands fa-github"></i> [S-RTTI Project on GitHub](https://github.com/sandraros/S-RTTI)
44

5-
In abap2UI5, you don’t necessarily need to type your data model at design time. You can just work with generic data references and apply typing at runtime based on your program logic. This is particularly useful for tables where, depending on user input, you may want to display different columns.<br>
5+
In abap2UI5, you don’t necessarily need to type your data model at design time, just work with generic data references and apply typing at runtime based on your program logic. This is for example useful for tables where, depending on user input, you may want to display different columns.<br>
66

7-
abap2UI5 serializes your app instances to ensure stateless behavior in client communication. Unfortunately, the SAP standard serialization features are limited; for example, they do not support local types created at runtime. If you encounter problems, just install the project [S-RTTI](https://github.com/sandraros/S-RTTI) which fills this gap.
7+
abap2UI5 serializes your app instances to ensure stateless behavior in client communication. Unfortunately, the SAP standard serialization features are limited; for example, they do not support local types created at runtime. If you encounter problems, just install the fantastic project [S-RTTI](https://github.com/sandraros/S-RTTI) filling this gap.
88

9-
#### Normal
9+
#### Basic
1010
Fully typed at design time, it works out of the box:
1111

1212
```abap

0 commit comments

Comments
 (0)