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 control with more than 10,000 elements
  • Visibility/Invisibility of elements in a List Box or Combo Box control
  • Sorted/Unsorted 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
Inserts an element into a List Box, ListView or Combo Box control populated programmatically.
Remarks:
  • To add an element at the end of List Box (or Combo Box) control, use ListAdd.
  • ListInsert can be used on single-selection and multi-selection List Box controls
  • To manage the contents of a Combo Box control in a container column of a Table control, use the Content property.
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 "Clark" in 4th position to "LIST_CustomerList"
ListInsert(LIST_CustomerList, "Clark", 4)
Sintaxis
ListInsert(<List Box control> , <Element> [, <Element index>])
<List Box control>: Control name
Name of List Box or Combo Box control populated programmatically.
If this parameter corresponds to an empty string (""), the element is inserted in the List Box or Combo Box control to which the current process belongs.
WEBDEV - Código Navegador The name of List Box or Combo Box control to use must necessarily be specified.
<Element>: Character string
Element that must be inserted into the specified List Box (or Combo Box) control populated programmatically.
This parameter can contain:
  • Carriage Return characters (CR) to add several rows. In this case:
    • if <Element index> is not specified, the elements are added.
    • If <Element index> is specified, only the first element will be added.
  • tabs (TAB) to obtain a multi-element List Box control (see Notes).
WEBDEV - Código ServidorWEBDEV - Código NavegadorPHP The Carriage Return characters (CR) and the tabulations (TAB) are not supported.
WEBDEV - Código Servidor To add several consecutive spaces, use non-breaking spaces: Caract(160).
<Element index>: Optional integer
Index of the element to be inserted.
If this parameter:
  • is not specified, the element is inserted:
    • before the current element in a single-selection List Box control. If there is no current element, the element is inserted at the last position in the List Box (or Combo Box) control populated programmatically.
    • at the last position in the List Box (or Combo Box) control populated programmatically, in a multi-selection List Box control.
  • is greater than the number of elements in the List Box (or Combo Box) control, the element is inserted at the last position in the List Box (or Combo Box) control populated programmatically. The number of elements in a List Box (or Combo Box) control is returned by ListCount.
  • is equal to 0, the element is added at the first position in the List Box (or Combo Box) control populated programmatically.
Observaciones

List control with more than 10,000 elements

The maximum number of elements that can be contained in a List Box control is limited only by available RAM (theoretical maximum: 2 billion lines). Nevertheless, populating a List Box control with a large number of elements (more than 10,000) affects performance.
To add a large number of elements, it is recommended to use a List Box control based on an HFSQL data file.
WEBDEV - Código ServidorPHPAjax

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.
WEBDEV - Código ServidorWEBDEV - Código NavegadorAjax

Sorted/Unsorted List Box control

  • If the List Box control is sorted, the new element is inserted at the current position without sorting the list box.
  • If the List Box control is not sorted, the new element is added:
    • at <Element index> if <Element index> is specified.
    • before the current element in a single-selection List Box control if the <Element index> parameter is not specified. If there is no current element, the element is inserted at the last position in the List Box (or Combo Box) control populated programmatically.
    • at the last position of the List Box (or Combo Box) control populated programmatically in a multi-selection List Box control, if the <Element index> is not specified.
The type of the List Box control (sorted or not) is selected 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.
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, ListInsert must be run on the server.
Calling ListInsert 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 ListInsert FUNCTION in automatic AJAX mode. That's it! No additional programming is required. For more details, see AJAX.

Miscellaneous

  • To insert an element into a Table control, use TableInsert.
  • ListInsert can be used on a "Combo Box" column in a Table control .
Componente: wd300obj.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Exemplo ListInsert
ListInsert(LIST_List,"Primeiro",1)
ListInsert(LIST_List,"Segundo",2)

ListInsert(LSV_Listview, "Imagen 1","D:\_GRAVACOES\Amarildo\Blog_Mandar_imagem\2016-10-04_1348.png", 1)
ListInsert(LSV_Listview, "Imagen 2","D:\_GRAVACOES\Amarildo\07112016_segunda\001\Video_Falta_1000.png", 2)

//Blog com Video E Exemplo
http://windevdesenvolvimento.blogspot.com.br/2016/11/aula-962-curso-windev-listbox-007.html
https://www.youtube.com/watch?v=M1jF2-ouHiw


De matos
04 12 2016

Última modificación: 27/03/2025

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