ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Dashboard functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Saves the configuration of a Dashboard control in string format. This configuration includes the following elements:
  • position of internal windows/pages in the Dashboard control.
  • size of internal windows/pages in the Dashboard control.
  • visibility of internal windows/pages in the Dashboard control.
Note: To save or restore the user configuration automatically, check the "Remember configuration of Widgets" option in the "Detail" tab of the control description window.
Example
WINDEV
// Demande à l'utilisateur le fichier de sauvegarde
sFichier is string

// Ouvre le sélecteur de fichiers
sFichier = fSelect("", "", "Sélectionnez un fichier de configuration...", ...
			"Configuration du tableau de bord" + TAB + "*.tdbconf", "*.tdbconf", ...
			fselCreate + fselExist)
// Si un fichier est sélectionné
IF sFichier <> "" THEN
	// Récupère la configuration courante dans une chaîne
	sConfiguration is string = TDB_TableauDeBord.SauveConfiguration()
	// Sauve la configuration
	IF fSaveText(sFichier, sConfiguration) THEN
		ToastDisplay("La configuration a été sauvée", toastShort, vaMiddle, haCenter)
	ELSE
		Error("Erreur en sauvegarde du fichier de configuration", ErrorInfo())
	END
END
WEBDEV - Server code
// Sauvegarde d'une configuration
sMaConfig is string
sMaConfig = TDB_FuseauxHoraires.SauveConfiguration()
fSaveText(fWebDir() + ["\"] + "ConfigTDB.tdb", sMaConfig)
Syntax
<Result> = <Dashboard control>.SaveConfiguration()
<Result>: Character string
Configuration of Dashboard control.
This configuration can be saved by fSaveText or SaveParameter.
This configuration can be restored by <Dashboard>.LoadConfiguration.
<Dashboard control>: Control name
Name of the Dashboard control to be used.
Related Examples:
WD Dashboard Training (WINDEV): WD Dashboard
[ + ] The "WD Dashboard" example is an educational example for using the Dashboard control.
This example explains how to:
- handle the control in "edit" mode,
- save/load a configuration,
- configure the control (initial configuration, addition/deletion of widgets, ...),
- refresh a widget,
- etc.
WW_Dashboard Training (WEBDEV): WW_Dashboard
[ + ] The "WD Dashboard" example is an educational example for using the Dashboard control.
This example explains how to:
- handle the control in "edit" mode,
- save/load a configuration,
- configure the control (initial configuration, addition/deletion of widgets, ...),
- refresh a widget.
Component: wd300obj.dll
Minimum version required
  • Version 23
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/20/2024

Send a report | Local help