ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

  • Use conditions
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
Returns the index of a column in a Table or Treeview Table control.
Example
WINDEVReports and QueriesJavaUser code (UMC)
// Index of "Ref" column in the "TABLE_Product" control
// The display order is taken into account
ResColumnIndex = TABLE_Product.ColumnSubscript("Ref", tcpDisplay)
WEBDEV - Server codeWEBDEV - Browser codeAjax
// Index of "Ref" column in the "TABLE_Product" control
// The display order is taken into account
ResColumnIndex = TABLE_Product.ColumnSubscript("Ref")
Syntax
<Result> = <Table control>.ColumnIndex(<Column> , <Order>)
<Result>: Integer
Column index:
  • The index of the first column is set to 1.
  • The invisible columns are also listed.
<Table control>: Control name
Name of Table or TreeView Table control to use.
<Column>: Character string
Name of the column to be used.
<Order>: Integer constant
Specifies the order of relevant columns:
tcpCreationOrder in which the columns have been created when describing the Table control.
tcpDisplayOrder in which the columns are displayed at run time.

WEBDEV - Server codeWEBDEV - Browser codePHP This parameter is optional. The constant used by default is tcpCreation: the creation order of columns is taken into account.
Remarks

Use conditions

<Table>.ColumnSubscript can be used on:
  • a Table or TreeView Table control based on a data file.
  • a Table or TreeView Table control populated programmatically.
  • a single-selection or multi-selection control.
    WEBDEV - Server codePHP Reminder: Multi-selection is not available for Table controls in "Server" mode.
  • WEBDEV - Server codePHP a Table control in "Server" or "Server + AJAX" mode, or on a TreeView Table control.
  • WEBDEV - Browser code a Table control in "Browser" mode.
    WEBDEV - Browser code The TreeView Table control is not available.
Component: wd280obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment