- Primeros pasos
- Antes de empezar
- Tutorial
- Acceder a la URL de producción de una aplicación
- Build a mobile-friendly app
- Aplicaciones integradas receptivas y optimizadas para dispositivos móviles
- Insertar mapas
- Establecer contexto externo
- Utilizar matrices para rellenar controles desplegables, desplegables de selección múltiple y botones de opción
- Usar TablaDeDatos con los controles Tabla y Editar cuadrícula
- Usar máscara de entrada
- Notificaciones
- Cómo utilizar expresiones VB
- Diseñar tu aplicación
- Eventos y reglas
- Regla: Si-Entonces-Si no
- Regla: abrir una página
- Regla: Abrir URL
- Norma: cerrar ventana emergente/inferior
- Regla: mostrar mensaje
- Regla: mostrar/ocultar indicador giratorio
- Regla: establecer valor
- Regla: iniciar el proceso
- Regla: restablece los valores
- Regla: subir el archivo al depósito de almacenamiento
- Regla: descargar el archivo del depósito de almacenamiento
- Regla: crear registro de entidad
- Regla: actualizar registro de entidad
- Norma: elimina el registro de entidad
- Regla: añadir a la cola
- Regla: flujo de trabajo del desencadenador
- Aprovechamiento de RPA en tu App
- Aprovechamiento de las entidades en tu App
- Aprovechar las colas en tu aplicación
- Gestión del ciclo de vida de las aplicaciones (ALM)
- Guía básica de resolución de problemas
Guía del usuario de Apps
Aplicaciones integradas receptivas y optimizadas para dispositivos móviles
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
Introducción
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.