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 List Box
  • List Boxes containing more than 10 000 elements
  • Visibility/Invisibility of elements in a List Box or Combo Box control
  • Equivalence
  • Sorted/Unsorted List Box control
  • Customizing the elements found in a List Box or Combo Box control
  • Tabulations: Multi-element List Box control
  • Adding an element to the browser
  • Miscellaneous
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 an element to:
  • a List Box control populated programmatically,
  • WINDEVJava a ListView control populated programmatically,
  • WINDEV a Carousel control,
  • a Combo Box control populated programmatically.
Remarks:
  • To add an element at a specific position, use ListInsert.
  • ListAdd can be used on the single-selection and multi-selection List Box controls.
  • To add an image to a standard List Box control, use gImage.
  • To add elements to a Combo Box control found in a container column of a Table control, use Content.
WEBDEV - Código Navegador Attention: The element will only be added to the page displayed in the browser.. For more details, see Remarks.
Ejemplo
// Add the customer named "Moore" into "LIST_CustomerList"
ListAdd(LIST_CustomerList, "Moore")
WINDEVWEBDEV - Código ServidorWEBDEV - Código NavegadorReportes y ConsultasAndroidJavaCódigo de Usuario (UMC)Ajax
// Add the customers named "Clark" and "Smith" into "LIST_CustomerList"
ListAdd(LIST_CustomerList, "Clark" + CR + "Smith")
WINDEVReportes y ConsultasJavaCódigo de Usuario (UMC)
// Add the "C:\MyImages\CoralReef.JPG" image into the "LSV_Diving" listview control
// The caption of this image will be "Nice coral"
ListAdd(LSV_Diving, "Nice coral", "C:\MyImages\CoralReef.JPG")
WINDEVWEBDEV - Código ServidorWEBDEV - Código NavegadorReportes y ConsultasAndroidJavaCódigo de Usuario (UMC)Ajax
// The "COMBO_Title" Combo Box displays personal titles:
// "Mister", "Madam" and "Miss".
// An integer representing a gender will be returned to the language.
ListeAdd(COMBO_Title, "Mister" + gStoredValue("1"))
Sintaxis
<Result> = ListAdd(<Control to use> [, <Element> [, <Path of image to display>]])
<Result>: Boolean
  • True if the element was added,
  • False otherwise.
WEBDEV - Código NavegadorPHP ListAdd returns no result.
<Control to use>: Control name
Name of control to use:
  • List Box control populated programmatically,
  • ListView control populated programmatically,
  • Combo Box control populated programmatically.
If this parameter corresponds to an empty string (""), the element is added to the List Box control (or Combo Box) to which the current event belongs.
WEBDEV - Código Navegador The name of the List Box (or Combo Box) control to use must be specified.
<Element>: Optional character string
Element that will be added into the specified control. If this parameter is not specified, an empty row is added into the List Box or Combo Box control.
This parameter can contain:
  • Carriage Return characters (CR) to add several elements.
  • tabs (TAB) to obtain a multi-element List Box control (see Notes).
  • gStoredValue to indicate the value that will be returned when the element is selected.
WINDEV For a Carousel control, the content of this parameter is displayed in the upper-left corner of the Carousel control.
WINDEVJava For a ListView control, this parameter corresponds to the image caption. This parameter can contain Carriage Return characters (CR) to add several elements. In this case:
  • if <Path of image to display> is not specified, the added elements will be associated with the default image (defined in the "Details" tab of the description window of control).
  • if <Path of image to display> is specified, only the first element will be added. This element will be associated with the specified image.
WEBDEV - Código ServidorWEBDEV - Código NavegadorAndroidJavaPHP The Carriage Return characters (CR) are supported while the tabulations (TAB) are not supported.
WEBDEV - Código Servidor To add several consecutive spaces, use non-breaking spaces: Caract(160).
<Path of image to display>: Optional character string
Name and path of image that will be added into a ListView control. You can also use an image memo field or a Image type variable.
This parameter is taken into account for ListView controls displayed in ListView mode only.
If this parameter is not specified, the default image (defined in the "Detail" tab of the control description window) is used..
WEBDEV - Código ServidorWEBDEV - Código NavegadorAndroidiPhone/iPadPHP This parameter is not available.
Observaciones

List Boxes containing more than 10 000 elements

The maximum number of elements contained in a List Box control is limited only by available RAM (theoretical maximum: 2 billion lines). Nevertheless, filling a List Box control with an important number of elements (more than 10 000) affects performance
To add many elements to a List Box control, it is recommended to use a List Box control based on a data file (i.e., a list directly linked to an HFSQL data file).
WINDEVWEBDEV - Código ServidorReportes y ConsultasAndroidiPhone/iPadJavaCódigo de Usuario (UMC)Ajax

Visibility/Invisibility of elements in a List Box or Combo Box control

To make an element invisible in a List Box or Combo Box control, use gStoredValue.
WINDEVWEBDEV - Código ServidorWEBDEV - Código NavegadorReportes y ConsultasAndroidiPhone/iPadJavaCódigo de Usuario (UMC)Ajax

Equivalence

The two following syntaxes are equivalent:
ListAdd(<Control name> [<Element>])
and
<Control name>[Index] = <Element>
WINDEVWEBDEV - Código ServidorWEBDEV - Código NavegadorReportes y ConsultasAndroidiPhone/iPadJavaCódigo de Usuario (UMC)Ajax

Sorted/Unsorted List Box control

  • If the List Box control is sorted, the new element is inserted according to the sort order.
  • If the List Box control is not sorted, the new element is added at the end of the list.
The control type (sorted or not) is chosen during the control description ("Details" tab).

Use ListAdd rather than ListInsert to add an element to a sorted List Box control.
WEBDEV - Código Navegador The element is added at the end of control, no matter whether the List Box control is sorted or not.
WINDEVReportes y ConsultasCódigo de Usuario (UMC)

Customizing the elements found in a List Box or Combo Box control

To customize the elements in a List Box or Combo Box control (background color, image, design), use Graphic string functions.
WINDEVReportes y ConsultasCódigo de Usuario (UMC)

Tabulations: Multi-element List Box control

To manage the tabulations in a List Box control (for aligning columns), use the TAB constant. For example:
ListAdd(LIST_Customer, LastName + TAB + FirstName)
In this example, all the first names start at the same position and are aligned one under the other.
Note The first call to the ListAdd function sets the tab position. These positions will be taken as reference for all values added thereafter. Similarly, if values have been typed entered in the editor, the positions of these values are taken as reference. During the first call to ListAdd, we advise you to define the width of columns with Complete. For example, to fix the width of columns found in "CUSTOMERS" to 10 characters:
ListAdd(LIST_Customer, Complete(LastName, 10) + TAB + Complete(FirstName, 10))
WEBDEV - Código Navegador

Adding an element to the browser

When adding an element in browser code, this element is added to the page displayed in the browser only. In order for this element to be added onto the server, ListAdd must be run on the server.
Calling ListAdd in browser code is useful when using AJAX technology, in "Programmed AJAX" mode (via AJAXExecute or AJAXExecuteAsynchronous).
Reminder In "automatic and immediate AJAX" mode, simply pass the server processing containing the function ListAdd FUNCTION in automatic AJAX mode. That's it! No additional programming is required. For more details, see AJAX.

Miscellaneous

  • To add elements into a Table control, use TableAdd.
  • ListAdd can be used on:
    • a column of type "Combo Box" in a Table control.
    • a "Table" Combo Box control.
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