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 / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
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
The WinLineDetails property allows you to get and change the name of the internal window used to display the details of a row in a Table control.
Note: The line is enlarged in height to show the internal window.. The internal window is displayed below the data found in the row.
Ejemplo
// Click on [With Details]
TABLE_Order.WinLineDetails = "IW_OrderDetails"
TableExpand(TABLE_Order, 1)
Sintaxis

Finding out the internal window used to display the row details Ocultar los detalles

<Internal window> = <Table control>.WinLineDetails
<Internal window>: Name of the internal window
Name of the internal window used to display the details of a control row.
<Table control>: Control name
Name of the Table control to be used.

Modifying the internal window used to display the row details Ocultar los detalles

<Table control>.WinLineDetails = <Internal window>
<Table control>: Control name
Name of the Table control to be used.
<Internal window>: Name of the internal window
Name of the internal window that will be used to display the details of a Table control row.
The prototype of this internal window is as follows:
PROCEDURE MyWindow(<Parent table> is control, <Row number> is int)

These parameters are filled when selecting the row to process in the control.
  • <Table parente> Name of the manipulated Table field.
  • <Numéro de la ligne> Integer corresponding to the line number whose details are displayed.
Observaciones
  • The height of the row that displays the internal window corresponds to the initial height of the row plus the height of the internal window in edit mode (InitialHeight property).
  • The internal window is unloaded when the user collapses a row.
  • The rows can be expanded and/or collapsed through programming with TableExpand and TableCollapse.
  • You also have the ability to specify an internal window specific to a row by using the following syntax:
    <Champ Table>[Line number].LineDetailWindow = LineFIPName
Versión mínima requerida
  • Versión 22
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

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