Skip to content

Commit 3b21193

Browse files
committed
Align page H1 titles with cookbook menu entries
Update the H1 of each cookbook page so it matches the sidebar entry that links to it: Follow-up -> Action, Inner/Cross App -> Navigation, Errors -> Exception, Built-In Popups -> Built-In, Geolocation, Maps -> Geolocation, Timer, Auto-Refresh -> Timer, Messages -> Message, Logging, BAL -> Logging, Locks -> Lock, App State, Share, Bookmark -> App State, Share, CL_DEMO_OUTPUT -> Demo Output, Smart Controls -> Smart Control.
1 parent 2ad0393 commit 3b21193

12 files changed

Lines changed: 12 additions & 12 deletions

File tree

docs/advanced/experimental/smart_control.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Smart Controls
4+
# Smart Control
55

66
Smart Controls are metadata-driven UI5 controls that build the UI automatically from OData annotations. abap2UI5 supports them on an experimental basis.
77

docs/cookbook/browser_interaction/timer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Timer, Auto-Refresh
4+
# Timer
55

66
abap2UI5 offers a custom control `z2ui5.Timer` that fires events after a set delay. This is handy for dashboards, status monitors, or any case that needs periodic data updates without user interaction.
77

docs/cookbook/device_capabilities/geolocation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Geolocation, Maps
4+
# Geolocation
55

66
abap2UI5 offers a custom control for reading geolocation data from the user's device — longitude, latitude, altitude, and speed. This is handy for logistics apps, field service tools, or any scenario where location matters.
77

docs/cookbook/event_navigation/action.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Follow-up
4+
# Action
55

66
Sometimes you need to call a backend function and then act on the frontend right afterward. The follow-up action event covers this:
77
```abap

docs/cookbook/event_navigation/exception.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Errors
4+
# Exception
55

66
Beyond plain messages, abap2UI5 ships dedicated popups and fallbacks for handling exceptions and unexpected failures.
77

docs/cookbook/event_navigation/navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Inner/Cross App
4+
# Navigation
55

66
In abap2UI5, each app is a single ABAP class. You can pack all logic into one class, but keeping classes at a reasonable size is better practice. Splitting functionality into multiple interacting classes lets you build reusable apps and popups that work in different contexts.
77

docs/cookbook/expert_more/app_state_share.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# App State, Share, Bookmark
4+
# App State, Share
55

66
abap2UI5 saves the current app state so you can return to it later — like how standard UI5 apps manage state. This opens up several useful options, like sharing and bookmarking the current state of your app.
77

docs/cookbook/expert_more/demo_output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# CL_DEMO_OUTPUT
4+
# Demo Output
55

66
Familiar with `CL_DEMO_OUTPUT` from classic ABAP? You can show its HTML output inside an abap2UI5 app too. This is handy for quick data visualization or when porting existing demos.
77

docs/cookbook/expert_more/lock.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Locks
4+
# Lock
55

66
In classic SAP GUI, a transaction like `VA02` calls `ENQUEUE_EVVBAK` and the lock lives as long as the dialog session. Web apps are different: each roundtrip is a fresh ABAP session by default, so a lock set in one roundtrip is gone by the next. Locking in abap2UI5 means picking a deliberate strategy for two questions:
77

docs/cookbook/popup_popover/built_in.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
outline: [2, 4]
33
---
4-
# Built-In Popups
4+
# Built-In
55

66
A few pre-built popup classes cover the most common cases:
77

0 commit comments

Comments
 (0)