ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / Automatic Application Features (AAF) / AAF on Tables and TreeView Tables
  • Overview
  • Remember break state
  • Programming
  • Forcing the storage of breaks
  • Preventing from storing breaks
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Overview
When an end user works on a complex Table or RepeatString field with many breaks, he may want to memorize the current presentation: unfolded break, folded break, ....
Remember break state
To save the current break statussimply select the "Memorize break status" option in the context menu of a break in the Table or RepeatString field. In this case, when closing the window, the breaks will be saved in their current state (expanded/collapsed). These breaks will be automatically re-applied during the next window opening.
To stop memorizing the current break statussimply select the "Memorize break status" option in the context menu of a break in the Table or RepeatString field.
Programming

Forcing the storage of breaks

To save the state of the breaks in a Table or Looper control, use AAFExecute with the aafSaveBreakStatus constant.
For example:
// Coche par défaut l'option de mémorisation des ruptures
AAFExecute(TABLE_Client, aafSaveBreakStatus)

Preventing from storing breaks

To no longer save the state of the breaks in a Table or Looper control, use AAFDisable with the aafSaveBreakStatus constant.
For example:
// Pas de mémorisation des ruptures
AAFDisable(TABLE_Client, aafSaveBreakStatus)
Minimum version required
  • Version 20
Comments
Click [Add] to post a comment

Last update: 06/05/2025

Send a report | Local help