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 / Controles, páginas y ventanas / Funciones Tabla
  • Use conditions
  • Positioning on the last row of the Table or TreeView Table control
  • Equivalence with the TableSelectPlus function
  • Special case: Table control with rebound elevator
  • "Select a row" event
  • Selection at cell level
  • Table control based on a data file containing more than 10 000 rows
  • Row selector
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
Selects a row in a Table or TreeView Table control. The selected row corresponds to the current row on which the selection bar is displayed.
Ejemplo
// Select row #5 in the "TABLE_ProductTable" control
TableSelectPlus(TABLE_ProductTable, 5)
// Select rows # 5 and 7 
// in the multi-selection Table control "TABLE_ProductTable"
TableSelectPlus(TABLE_ProductTable, 5, 7)
Sintaxis
TableSelectPlus(<Table control> [, <Index 1> [... [, <Index N>]]])
<Table control>: Control name
Name of the control to be used. This control can correspond to:
  • a Table control.
  • a TreeView Table control.
If this parameter corresponds to an empty string (""), the control to which the current process belongs will be used.
<Index 1>: Optional integer
Index of the first row to select.
If <Index 1> and <Index N> are not specified, all the rows in the control are selected.
TableSelectPlus has no effect if <Index 1> and <Index N> correspond to rows that are already selected. You can get the index of a selected row with TableSelect.
If this parameter corresponds to -1, the "current" row (the one with focus) is selected.
WEBDEV - Código ServidorWEBDEV - Código NavegadorPHP In "Server" Table controls, only one index can be specified.
<Index N>: Optional integer
Index of the Nth row to select.
If <Index 1> and <Index N> are not specified, all the rows in the specified control are selected.
TableSelectPlus has no effect if <Index 1> and <Index N> correspond to rows that are already selected. You can get the index of a selected row with TableSelect.
WEBDEV - Código ServidorWEBDEV - Código NavegadorPHP In "Server" Table controls, only one index can be specified.
Observaciones

Use conditions

TableSelectPlus 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.

Positioning on the last row of the Table or TreeView Table control

To position on the last row of a Table or TreeView Table control, use one of the following syntaxes:
  • TableSelectPlus function:
    TableSelectPlus(<Table control>, <Table control>.Count)
  • Property Count:
    <Table control> = <Table control>.Count
  • TableCount function:
    <Table control> = TableCount(<Table control>)

Equivalence with the TableSelectPlus function

For a single-selection Table or TreeView Table control (without stored item), the two following syntaxes are equivalent:
TableSelectPlus(<Table control>, <Index>)

<Table control> = <Index>

Special case: Table control with rebound elevator

Selecting a non-visible row in the Table control does not give focus to the selected row.
Note We recommend using a Table control with a proportional scrollbar.

"Select a row" event

The "Select a row" event is not run when TableSelectPlus is called.
WINDEVJava

Selection at cell level

The Selected property can be used to select a cell or to determine if a cell is selected in Table controls with "Multiple selection" mode.
For example:
// Example for selecting a cell
TABLE_ListCustomers[3,2].Selected = True

Table control based on a data file containing more than 10 000 rows

In a Table control based on a data file containing more than 10 000 rows, for performance reasons, the positioning in the Table control is approximate.
For an exact positioning, you must:
  1. Perform a search with HReadSeek.
  2. Call TableDisplay with the taCurrentSelection constant.

Row selector

When the style of the Table control contains a row selector, the arrow on the left is positioned on:
  • the last selected row when the multiple selection is performed with the mouse or with the keyboard,
  • the row to which "focus" is gien by assigning the Table control. For example:
    // Positions the row selector on the 3rd row
    // And selects the rows 3, 4 and 5
    TABLE_ListCustomers = 3 
    TableSelectPlus(TABLE_ListCustomers, 3, 4, 5)
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

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