Skip to content

Commit 9fd292b

Browse files
authored
update
1 parent eacab46 commit 9fd292b

File tree

3 files changed

+23
-36
lines changed

3 files changed

+23
-36
lines changed

docs/.vitepress/config.mjs

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,12 @@ export default defineConfig({
9393
{ text: 'General', link: '/development/general' },
9494
{ text: 'View', link: '/development/view' },
9595
{ text: 'Model', link: '/development/model' },
96-
// { text: 'Events, Navigation', link: '/development/events' },
96+
{ text: 'Events', link: '/development/events' },
97+
{ text: 'Navigation', link: '/development/navigation' },
9798
{ text: 'Messages, Errors', link: '/development/messages' },
9899
{ text: 'Translation, i18n', link: '/development/translation' },
99-
{ text: 'Popups, Popover', link: '/development/popups' },
100+
{ text: 'Popups, Popover', link: '/development/popups' },
101+
100102
{ text: 'Troubleshooting', link: '/development/troubleshooting' },
101103
]
102104
},
@@ -121,7 +123,7 @@ export default defineConfig({
121123
text: 'Addons', link: '/addons/addons', collapsed: true, items: [
122124
{ text: 'RTTI', link: '/addons/srtti' },
123125
{ text: 'Layouts, Variants', link: '/addons/layout' },
124-
// { text: 'Popups', link: '/addons/popup' },
126+
{ text: 'Popups', link: '/addons/popup' },
125127
{ text: 'Logging, BAL', link: '/addons/logging' },
126128
{ text: 'XLSX', link: '/addons/xlsx' },
127129
{ text: 'JS Libraries', link: '/addons/ext_js' },
@@ -138,30 +140,15 @@ export default defineConfig({
138140
{ text: 'Renaming', link: '/advanced/renaming' },
139141
{ text: 'Launchpad KPIs', link: '/addons/kpi' },
140142
{ text: 'Remote App Calls', link: '/addons/rfc' },
141-
// { text: 'UI5, ABAP Versions', link: '/features/faq' },
142-
// { text: 'SE80, ADT', link: '/advanced/se80' },
143143
{ text: 'Extensibility', link: '/advanced/extensibility' },
144144
{ text: 'Technical Background', link: '/advanced/insights/insights' , items: [
145145
{ text: 'General', link: '/advanced/insights/insights' },
146146
{ text: 'open-abap', link: '/advanced/insights/open_abap' },
147147
// { text: 'CI/CD', link: '/insights/ci' },
148148
// { text: 'abaplint', link: '/insights/ci' },
149-
// { text: 'open-abap', link: '/advanced/open_abap' },
150149
]
151150
} ]
152151
},
153-
// {
154-
// text: 'Under The Hood',
155-
// link: '/insights/insights',
156-
// collapsed: true,
157-
// items: [
158-
// { text: 'General', link: '/insights/insights' },
159-
// { text: 'open-abap', link: '/insights/open_abap' },
160-
// // { text: 'CI/CD', link: '/insights/ci' },
161-
// // { text: 'abaplint', link: '/insights/ci' },
162-
// // { text: 'open-abap', link: '/advanced/open_abap' },
163-
// ]
164-
// },
165152
{
166153
text: 'Resources',
167154
link: '/resources/resources',

docs/development/events.md

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
outline: [2, 4]
33
---
4-
# Events, Navigation
4+
# Events
5+
6+
### Backend
57

6-
### Events
78
`client->_event( t_arg = value # ( ( ...`
89

910
Check the documentation [here.](https://openui5.hana.ondemand.com/#/topic/b0fb4de7364f4bcbb053a99aa645affe) There are different ways for adressing the event handler ($event, $source, $params) and you can select your value for example with /mProperties/property.<br>
@@ -14,25 +15,11 @@ You can also call functions directly in the view as explained [here.](https://sa
1415
<br>
1516

1617

17-
##### **Open new tab**
18-
Use the following snippet:
19-
```abap
20-
client->timer_set(
21-
interval_ms = 0
22-
event_finished = client->_event_client( action = client->cs_event-open_new_tab t_arg = value #( ( `https://www.github.com/abap2UI5` ) )
23-
) ).
24-
```
25-
26-
27-
### Navigation
2818

19+
#### Frontend
2920

3021

31-
##### Backend
32-
Navigation
33-
Backend
34-
Frontend
3522

23+
#### Follow Up Action
3624

3725

38-
###### Frontend (Launchpad)

docs/development/navigation.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
outline: [2, 4]
3+
---
4+
# Navigation
5+
6+
### Backend
7+
8+
9+
##### Launchpad
10+
11+
12+
### Frontend
13+
In app

0 commit comments

Comments
 (0)