- Overview
- How to?
- Adding a break into a Table control
- Top and break footer
- How to fill a Table control with breaks?
- Manipulating the controls found in the break headers and footers
- How to?
- Example
- Automatic calculations in the breaks of a Table control
- Handling the break headers and footers
- To initialize the break headers and footers
- Properties associated with the break headers and footers
- WLanguage functions specific to Table controls with breaks
- Managing breaks in the Table controls programmatically
A break in a Table control is used to group rows according to one or more criteria. For example, you have the ability to group: - the customers by country and by city,
- the products according to their family, ...
The breaks in a Table control are available for: - the Table controls based on a data file loaded in memory,
- Table controls populated programmatically etc.
- the Table controls in Standard, AJAX and Browser mode.
Adding a break into a Table control To add a break into a Table control: - Display the Table field description ("Description" option in the context menu).
- On the "Content" tab, click . The window for break management is displayed.
Note: Breaks are not available on Table fields based on a data file with direct access to the data source. - Select the item on which the break must be performed. Several items can be selected in order to perform several breaks. The proposed items depend on the type of the Table control:
- Table control based on a data file loaded in memory:
- automatic browse: the browse item, the column linked to the browse item and the columns linked to no item are proposed. If the search item corresponds to a composite key, the components of this composite key, the columns linked to these components and the columns linked to no item are proposed.
- programmed route: data file items and related columns are proposed.
- Table control based on a data file linked to a query:
- automatic browse: the browse item, the columns linked to this browse item and the columns linked to no item are proposed.. If the search item is not specified ("<Automatic>" option), the sorted items of the query, the columns linked to these items and the columns linked to no item are proposed.
- programmed path: query items, columns linked to these items and columns linked to no item are proposed.
- Table field by programming: all Table field columns are proposed.
- The breaks are performed according to their display order. Modify (if necessary) this order via the arrow buttons found on the right of table.
- Validate.
Top and break footer When adding a new break, a break header and a break footer are automatically added to the Table control. If the Table control includes several breaks, there will be as many break headers and break footers as the number of breaks. The break headers and the break footers appear in edit in the Table control. The characteristics of these break headers and footers (name, visibility, background color, ...) can be modified in their description window ("Description" in the context menu). Each break header and break footer is associated with the "Display a row" event. This event is executed when a new break header or break footer is displayed in the Table control. These break headers and footers can contain controls. These controls can be handled programmatically. Various WLanguage events are associated with break headers. Remarks: - In the description of the Table control ("Content" tab), you have the ability to specify whether the breaks must display (or not) a button used to collapse/expand the break ("Breaks with collapse/expand" option).
- In the description of the Table control ("Details" tab), if the type of fill is "Loaded in memory", the breaks can be collapsed/expanded via a simple click in the background of the break ("Collapsible/Expandable breaks via simple click in the background").
- In the description of the Table control, you have the ability to configure the image used to draw the "+" and "-" buttons in the table breaks. To do so, select the "Break, border in creation" element in the "Style" table then click the "Plus/Minus image of breaks" button.
- A break header can be always visible. In this case, during the scroll, the bar of the break will not be moved. In order for a break header to be always visible:
- Select the break header and display its description ("Description" in the context menu).
- On the "UI" tab, check "Break header always visible".
How to fill a Table control with breaks? For the Table controls based on a data file, the addition of records is automatically performed according to the file or to the associated query. The sort is performed according to the search item. For Table controls populated programmatically, data is added with TableAddLine. In order for a Table control to be sorted according to the specified breaks, you must use TableSort. Example: Table field by programming: A break has been defined on the Country and City columns:
TableAddLine(TABLE_Ruptures, "FRANCE", "Montpellier", "TEXTE1", "Texte1")
TableAddLine(TABLE_Ruptures, "FRANCE", "Paris", "TEXTE2", "Texte2")
TableAddLine(TABLE_Ruptures, "FRANCE", "Montpellier", "TEXTE3", "Texte3")
TableAddLine(TABLE_Ruptures, "FRANCE", "Lille", "TEXTE4", "Texte4")
TableAddLine(TABLE_Ruptures, "ESPAGNE", "Madrid", "TEXTE1", "Texte1")
TableAddLine(TABLE_Ruptures, "ESPAGNE", "Barcelone", "TEXTE3", "Texte3")
TableAddLine(TABLE_Ruptures, "ESPAGNE", "Barcelone", "TEXTE4", "Texte4")
TableAddLine(TABLE_Ruptures, "ALGERIE", "Alger", "TEXTE5", "Texte5")
TableAddLine(TABLE_Ruptures, "ALGERIE", "Oran", "TEXTE6", "Texte6")
TableAddLine(TABLE_Ruptures, "ALGERIE", "Alger", "TEXTE7", "Texte7")
TableAddLine(TABLE_Ruptures, "ALGERIE", "Chlef", "TEXTE8", "Texte8")
TableAddLine(TABLE_Ruptures, "ALGERIE", "Alger", "TEXTE9", "Texte9")
TableAddLine(TABLE_Ruptures, "ESPAGNE", "Madrid", "TEXTE2", "Texte2")
TableSort(TABLE_Ruptures, TABLE_Ruptures.Pays.Nom, TABLE_Ruptures.Ville.Nom)
Manipulating the controls found in the break headers and footers How to? To manipulate the controls found in the break headers and footers - handle each control found in all the break headers and footers:
<Nom Champ>.<Nom Propriété> = <Valeur> ou <Nom Table>.<Nom Haut/Bas de rupture>.<Nom Champ>.<Nom Propriété> = <Valeur> - handle each control found in a given break:
<Nom Table>[<Indice>].<Nom Champ>.<Nom Propriété> = <Valeur> <Subscript> corresponds to the row number for the break.
Remarks: - These lines of code must be in the "Display a row" event of the break header / footer.
- Special case: Check Box control: a Check Box control with several options and located in the break footer cannot be programmatically assigned.. If several check boxes are required in the break headers and footers, we recommend that you use a Check Box control for each checkmark.
Example This code is used to display in the "STC_Country" control the name of the country displayed in the Country column. This code is entered in the code for displaying a row of BreakHeader:
IndiceRupture is int = TableIndiceRupture(RUPT_HautDeRupture)
TABLE_CLIENTS[IndiceRupture].LIB_PAYS = "Pays: " + TABLE_Articles.COL_NomPays
Automatic calculations in the breaks of a Table control Handling the break headers and footers To initialize the break headers and footers All the break headers and footers can handled: <Nom Haut/Bas de rupture>.<Nom Propriété> = <Valeur> Remark: These lines of code must be present in the "Display line" event at the top/bottom of the break footer. Example: Code used to modify the height of the breakpoints: HautRupture1.Hauteur += 10
Properties associated with the break headers and footers The following properties are associated with the break headers and footers: | | Collapsed | Allows you to find out and modify the "collapsed" status of a break. | Height | Allows you to find out and modify the height of a break header or footer. | Name | Returns the name of a break header or footer. | Type | Returns the type of an element. | Visible | Allows you to find out whether a break header or footer is visible and to make a break header or footer visible. |
For a complete list of available properties, see Properties available for the breaks (Table). WLanguage functions specific to Table controls with breaks The following functions can be used to manipulate the breaks in the Table controls:
| | TableBreakIndex | Returns the index of the break header and footer for a given break in a Table control. | TableCollapse | Collapses:- a branch that was previously expanded in a TreeView Table control.
- a break that was previously expanded in a Table control.
- a detailed window displayed for a row.
| TableCollapseAll | Collapses:- the entire hierarchy (all nodes) of a TreeView Table control.
- all breaks of a Table control.
| TableExpand | Expands:- a branch that was previously collapsed in a TreeView Table control.
- a branch that was previously collapsed in a Table control.
- a detailed window displayed for a row.
| TableExpandAll | Expands:- the entire hierarchy (all nodes) of a TreeView Table control.
- all breaks of a Table control.
|
Related Examples:
|
Unit examples (WINDEV): The Table control with break
[ + ] Using the Table control with break.
|
This page is also available for…
|
|
|