AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Tabla
  • Use conditions
  • Row characteristics
  • Position of the new row
  • Limits: Maximum number of lines displayed
  • Miscellaneous
  • Adding rows
  • Cascading input
  • Table field/Hierarchical file table: Changes to the linked data file
  • Table field/Hierarchical table file: Add multiple lines
  • Adding a record to a Table control based on a data file and releasing a trigger
  • Table or TreeView Table control based on a data file in edit mode
  • Adding images
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
Adds a row in:
  • a Table control,
  • a TreeView Table control,
  • WINDEV a Combo Box control "with table" (Table control displayed in a Combo Box control).
Note: It is recommended to use <Table>.AddLine. <Table>.AddLine is used to add:
  • TAB characters into the columns,
  • all types of values into the columns,
  • UNICODE data automatically and without conversion.
Ejemplo
// Add "Moore", "Vince" and "06/21/72"
// at the end of the "TABLE_CustomerTable" control
ResAdd = TABLE_CustomerTable.Add("Moore" + TAB + "Vince" + TAB + "06/21/72")
Sintaxis
<Result> = <Table control>.Add([<Row>])
<Result>: Booleano
  • True if the element was added,
  • False otherwise.
<Table control>: Nombre del control
Name of the control to be used. This control can correspond to:
  • a Table control.
  • a TreeView Table control.
  • WINDEV a Combo Box control with table.
<Row>: Cadena de caracteres opcional
Row to add. This row has the following format:
<Element of column 1> + TAB + <Element of column 2> + TAB + ...

If this parameter is not specified, an empty row is added into the control. For a data-bound control, the default values defined in the linked data file are taken into account.
Observaciones

Use conditions

<Table>.Add can be used on:
  • Table or TreeView Table controls based on a data file.
  • Table or TreeView Table controls populated programmatically.
  • single-selection or multi-selection controls.
    WEBDEV - Código ServidorPHP Reminder Multi-selection is not available for Table control fields in "Server" mode.
WEBDEV - Código ServidorPHP This function is available for Table controls in "Server" and "Server + AJAX" mode, and for TreeView Table controls.
WEBDEV - Código Navegador This function is available for Table controls in "Browser" mode only.
WEBDEV - Código Navegador The TreeView Table control is not available.
AndroidiPhone/iPad Table controls based on a data file are not available in edit mode. <Table>.Add cannot be used on Table controls based on a data file.

Row characteristics

  • Each added element is converted into the type of the relevant column.
  • If you don't want to specify a value for an element, use an empty string ("") or 0 (depending on the column type). For example:
    TABLE_CustomerTable.Add("Moore" + TAB + "Vince" + TAB + "" + TAB + "06/21/72")
  • If an element corresponds to the result of a calculation, enclose the numerical expression in brackets. For example:
    TABLE_CalculationTable.Add((53+29) + TAB + (83-21))

Position of the new row

By default, the row is added at the end of the rows displayed by the control.
Special case:
  • If the control is sorted by <Table>.Sort, the added row is positioned in the control according to the current sort.
  • If the control is sorted by the user, the sort is ignored when inserting the row. The row is added at the end of control.

Limits: Maximum number of lines displayed

The maximum number of rows that can be displayed in a TreeView Table control or hierarchical Table is limited only by available RAM (theoretical maximum: 2 billion rows).
However, we do not advise you to use large Table or TreeView Table controls for performance and user-friendliness reasons (time required to fill the control for example).

Miscellaneous

  • To add a row at a specific position in a Table or TreeView Table control, use <Table>.InsertLine.
  • If the added row is the first row of the control, the added row becomes the current row.
WINDEVWEBDEV - Código ServidorJavaPHP

Adding rows

The NewLine property is used to determine if the current row has just been created by <Table>.Add (NewLine = True).
WINDEVWEBDEV - Código ServidorJavaPHP

Cascading input

To perform a cascading input, <Table>.Add must be used in the "Exit a row" event of the Table control:
IF TABLE_CustomerTable.NewLine THEN
TABLE_CustomerTable.Add()
END
WEBDEV - Código ServidorPHP This function is only available for Table control fields in AJAX mode.
WINDEVWEBDEV - Código ServidorJavaPHP

Table field/Hierarchical file table: Changes to the linked data file

  • If the cascading input is enabled, the data file linked to the control is automatically modified when the user goes to the next row.
  • If the cascading input is not enabled, the data file linked to the control is not modified. To write the content of the new row to the linked data file, <Table>.Save must be used after <Table>.Add.
Remarks:
  • The "Entrada en cascada (Agregar)" option can be selected in the "Details" tab of the control description.
  • Java The cascading input is not available for Table controls with direct access to the data source. This option is only available for Table controls populated programmatically and with in-memory data source.
  • WEBDEV - Código Servidor Cascading input is only available for "Server + AJAX" Table controls based on a data file.
WINDEVWEBDEV - Código ServidorJavaPHP

Table field/Hierarchical table file: Add multiple lines

A virtual row is created each time <Table>.Add is called in a Table or TreeView Table control based on a data file. The information will be saved in the linked data file only when <Table>.Save is called.
If <Table>.Add is successively called in the same process without being followed by <Table>.Save, only the FIRST call is effective (the following calls are ignored). Only one row is added to the Table or TreeView Table control.
WEBDEV - Código ServidorPHP This operating mode is only available for "Server + AJAX" Table controls based on a data file.
WINDEVWEBDEV - Código ServidorJavaCódigo de Usuario (UMC)

Adding a record to a Table control based on a data file and releasing a trigger

A trigger can be released when a record is added in a Table control based on a data file. For more details, see the documentation about <Source>.DescribeTrigger.
WEBDEV - Código Servidor This operating mode is only available for "Server + AJAX" Table controls based on a data file.
WINDEVJavaCódigo de Usuario (UMC)

Table or TreeView Table control based on a data file in edit mode

If <Table>.Add is called:
  • In a control event, the cursor is automatically positioned on the first editable column in the new row.
  • In an event that does not belong to the control (or in another process), SetFocusAndReturnToUserInput must be used to resume the input in the Table or TreeView Table control.

Adding images

To add an image to a Table or TreeView Table control:
  • WINDEV specify the name and full path of the image to be added.
    For example:
    TABLE_MyTable.Add("C:\MyDocuments\MyImage.BMP")
  • WEBDEV - Código ServidorPHP specify the path and name of image to add. The path is relative to the "<Project_Name>_WEB" directory.
    For example:
    // Adds the image found in the "WB_MyApp_WEB" directory
    TABLE_MyTable.Add("MyImage.BMP")
Note: To correctly display the added image, the column must be of type Image.
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 23
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 18/09/2024

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