ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Table functions
  • Use conditions
  • Events of the Table control
  • Reinitialize the Table control
  • Viewing the records found between two values
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Stops the manual iteration of data file linked to a Table control based on a data file. After the call to <Table>.End, the records found after the current record in the Table control will not be read.
Example
// Stop browsing the file linked to the Table control "TABLE_ProductTable"
TABLE_ProductTable.End()
Syntax
<Table control>.End()
<Table control>: Control name
Name of the Table control to be used.
Remarks

Use conditions

  • <Table>.End can be used on a single-selection or multi-selection Table control.
  • <Table>.End must not be used on the Table controls based on a data file that use an automatic iteration.
WEBDEV - Server code Reminder: Multi-selection is not available for "classic" Table controls.

Events of the Table control

<Table>.End can only be used in the following events of Table controls:
  • Initialization.
  • Reading the previous record.
  • Reading the next record.
WEBDEV - Server code <Table>.End can only be used in the event "Initializing" of the Table control.

Reinitialize the Table control

After calling <Table>.End in an event of a Table control, re-display the Table control data. For example:
TABLE_TABLE1.Display(taInit)

Viewing the records found between two values

To view the records corresponding to an interval of values in a Table control, we recommend that you use <Source>.Filter (instead of <Table>.End).
Component: wd290obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/20/2023

Send a report | Local help