ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
WinLineDetails (Property)
In french: FenêtreDétailLigne
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.
Example
// Clic sur [Avec Détails]
TABLE_Commande.FenêtreDétailLigne = "FI_DétailCommande" 
TableExpand(TABLE_Commande, 1)
Syntax

Finding out the internal window used to display the row details Hide the details

<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 Hide the details

<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.
Remarks
  • 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
Minimum version required
  • Version 22
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/10/2025

Send a report | Local help