AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Funciones específicas de la Web / Funciones de páginas
  • Characteristics of Cell controls
  • Special cases
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Displays a Cell control in a page with a DDW effect (Dim Disabled Windows). This function is used to easily simulate a dialog box in browser code, by using a Cell control in a page.
For more details, see Communicating with the Web user.
Ejemplo
// Affiche un champ Cellule contenant une question
CELL_Question.AfficheDialogue(cellCenter, True, 50)
Sintaxis
<Cell control>.DisplayDialog([<Display position> [, <Take DDW into account> [, <Dimming rate>]]])
<Cell control>: Nombre del control
Name of the Cell control that will be displayed.
<Display position>: Constante opcional de tipo Integer
Display position of cell:
cellBottomLeftThe Cell control is at the bottom left of the visible part of the current page.
cellBottomRightThe Cell control is at the bottom right of the visible part of the current page.
cellCenter
(Default value)
The Cell control is centered in the visible part of the current page.
cellPositionXYThe Cell control remains at its current position.
cellTopLeftThe Cell control is at the top left of the visible part of the current page.
cellTopRightThe Cell control is at the top right of the visible part of the current page.
<Take DDW into account>: Booleano opcional
  • True (default) to display the Cell control with a DDW effect (the page displayed behind the Cell control is grayed)
  • False to disable the DDW effect.
<Dimming rate>: Integro
Rate of gray (included between 0 and 100) used by the DDW.
The maximum value (100) will be used if the specified value is greater than 100.
The DDW is ignored if the specified value is less than 0. The default dimming rate is set to 18%.
Observaciones

Characteristics of Cell controls

  • The Cell control must be overlayable ("UI" tab of the Cell control description window).
  • To avoid displaying unnecessary scrollbars in the browser, check the "Forzar posición en la parte superior izquierda de la página al cargarla" option ("Advanced" tab of the Cell control description window). This option is used to automatically position the Cell control at position (0,0) when loading the page. Then, the display position defined by <Cell>.DisplayDialog is taken into account.
Note To execute server code from a Cell control, use AJAXExecute or AJAXExecuteAsynchronous.

Special cases

  • <Cell>.DisplayDialog must be used to display the Cell control:
    • in a "None" button. In this case, only the browser code of the button will be executed.
    • in a "Submit" button and activate AJAX in the code of this button. In this case, the browser and server codes of the button will be executed.
  • The Cell control displayed can be hidden with <Cell>.CloseDialog.
  • Browsers don't refresh the display in the middle of Javascript code: the functions <Cell>.DisplayDialog and <Cell>.CloseDialog functions must be used in different events/processes. If these functions are used in the same event/process, the Cell control is not displayed.
  • It is not possible to display two different Cell controls at the same time using <Cell>.DisplayDialog.
Componente: WDJS.DLL
Versión mínima requerida
  • Versión 23
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 04/10/2024

Señalar un error o enviar una sugerencia | Ayuda local