- Erste Schritte
- Bevor Sie beginnen
- Anleitungen zu …
- Greifen Sie auf die Produktions-URL einer App zu
- Build a mobile-friendly app
- Reaktionsfähige und für Mobilgeräte optimierte eingebettete Apps
- Karten einbetten
- Festlegen von externem Kontext
- Verwenden Sie Arrays, um Dropdown-Menüs, Dropdown-Menüs mit Mehrfachauswahl und Optionsfeld-Steuerelemente auszufüllen
- Verwenden Sie DataTable mit Tabellensteuerelementen und Bearbeitungsrastersteuerelementen
- Eingabemaske verwenden
- Benachrichtigungen
- Verwenden von VB-Ausdrücken
- Entwerfen einer App
- Ereignisse und Regeln
- Regel: If-Then-Else
- Regel: Eine Seite öffnen
- Regel: URL öffnen
- Regel: Popover/unterstes Blatt schließen
- Regel: Nachricht anzeigen
- Regel: Drehfeld anzeigen/ausblenden
- Regel: Wert festlegen
- Regel: Prozess starten
- Regel: Werte neu festlegen
- Regel: Datei in Speicher-Bucket hochladen
- Regel: Datei aus Speicher-Bucket herunterladen
- Regel: Entitätsdatensatz erstellen
- Regel: Entitätsdatensatz aktualisieren
- Regel: Entitätsdatensatz löschen
- Regel: Zu Warteschlange hinzufügen
- Regel: Workflow auslösen
- Nutzen von RPA in einer App
- Nutzen von Entitäten in Ihrer App
- Nutzen von Warteschlangen in Ihrer App
- Application Lifecycle Management (ALM)
- Grundlegende Anleitung zur Fehlerbehebung
Apps-Benutzerhandbuch
Reaktionsfähige und für Mobilgeräte optimierte eingebettete Apps
You can add logic to your external webpage, making your embedded app responsive to screen size changes. This can be useful if you use small-screen devices, such as mobile phones, because it mitigates the need for you to scroll multiple times to see the embedded app content.
If you do not add this logic to your webpage, the embed maintains a static height and displays a scroll bar.
The script performs the following operations:
-
When a control is added to or removed from the app, the script triggers the
APP_CONTENT_HEIGHT_UPDATED
event, and updates the height of theembed
variable.-
The
APP_CONTENT_HEIGHT_UPDATED
event triggersAPP_CONTENT_RESIZED
, which reduces the height of theembed
variable by 10 pixels.-
The
APP_CONTENT_RESIZED
event triggers anotherAPP_CONTENT_RESIZED
event, which again reduces the height of theembed
variable by 10 pixels.
-
-
The script repeats these operations, until:
-
The
embed
variable is at the minimum height where a scroll bar is not required to view the app. -
The
embed
variable is reduced to the initial value, which is specified byMIN_HEIGHT
.
Responsive and mobile-friendly embedded app
Einleitung
This webpage embeds a mobile app inside a device frame. The app displays content responsively for mobile usage. An iFrame loads content dynamically, and displays it inside the device frame. The app content adjusts its height based on its content, in order to prevent scrollbars.