|
|
|
|
|
- Overview
- Manipulating Dashboard controls programmatically
- Adding a widget
- Running a procedure defined for an internal window or page (used as widget)
- Handling a widget programmatically
- Dragging and dropping widgets onto a Dashboard control
- Properties specific to Dashboard controls
Manipulating Dashboard controls programmatically
To programmatically handle a Dashboard control, WINDEV, WEBDEV and WINDEV Mobile include dashboard-specific functions. This help page explains how to programmatically manipulate Dashboard controls.
Manipulating Dashboard controls programmatically Adding a widget Widgets can be added to Dashboard controls using DashAddWidget. By default, a Widget is invisible. It can be displayed by using the Visible property. If the widget is not visible, the user can make it visible via the context menu of the edit mode. Examples: - Adding a simple widget (without parameters):
nIndice = DashAddWidget(TDB_TableauDeBord, FI_Widget_AlerteStock, ...
"Alerte stock")
- Adding a widget with parameters:
nIndice is int
nIndice = DashAddWidget(TDB_TableauDeBord, FI_Widget_Horloge, ...
"Horloge " + COMBO_AjoutWidget[COMBO_AjoutWidget].ValeurAffichée, ...
COMBO_AjoutWidget[COMBO_AjoutWidget].ValeurAffichée)
IF YesNo(Yes, "Souhaitez-vous afficher ce widget ?") = Yes THEN
TDB_TableauDeBord[nIndice].Visible = True
ELSE
ToastDisplay("Widget ajouté au tableau de bord en ""caché"". "+ ...
"Passez en mode édition pour l'ajouter", toastShort, vaMiddle, haCenter)
END
Special case: adding a Widget to the initial configurationBy default, the Dashboard control displays the widgets as they have been defined in the window or page editor. To add widgets programmatically when the Dashboard control is loaded, use: Warning: in this case, these functions must be used in the "Initialization" event of the Dashboard control array. Examples: - Adding a simple widget (without parameters)
nIndice = DashAddWidget(MySelf, FI_Widget_AlerteStock, "Alerte stock")
DashInitialConfiguration(MySelf, nIndice, 5, 1)
- Adding a widget with parameters
dDate is Date
nIndice is int
nX, nY are int
nX = 1 ; nY = 3
FOR i = 1 TO 3
nIndice = DashAddWidget(MySelf, FI_Widget_ChiffreClé, ...
StringBuild("Chiffres clés de %1", ...
DateToString(dDate, "Mmm AAAA")), dDate)
DashInitialConfiguration(MySelf, nIndice, nX, nY)
nY++
dDate.Month--
END
Note: To refresh a Widget with parameters, it is advisable to: - Add an optional event for refreshing the widget in the events of the internal window or page.
- Enter the code used to refresh the widget. This code can be used for example to update the elements displayed in the internal window or page.
- Refresh the widget with DashDisplay.
Running a procedure defined for an internal window or page (used as widget) To run a procedure defined in the internal window or page used as widget, use the following syntaxes: - Syntax that uses the name of internal window or page:
NameInternalWindow.ProcedureName(Param1, Param2, ...) For example:
IW_Widget_KeyNumber.NewDate(EDT_Date)
- Syntax that uses a Control variable (if the same internal window or page is used several times in the Dashboard control):
VariableName is Control <- DashboardName[WidgetIndex] VariableName.ProcedureName(Param1, Param2, ...) For example:
X is Control <-TDB_TableauDeBord[4]
X.NouvelleDate(SAI_Date)
Handling a widget programmatically To programmatically handle a widget, use one of the following syntaxes: - Syntax 1: Direct use of the Dashboard control:
DashboardName[WidgetIndex] For example:
Trace(TDB_MonTableauDeBord[1].Libellé)
- Syntax 2: Using a variable of type Field:
VariableName is Control <- DashboardName[WidgetIndex] For example:
X is Control <-TDB_TableauDeBord[4]
Trace(X.Libellé)
Dragging and dropping widgets onto a Dashboard control Properties specific to Dashboard controls Use the following properties to programmatically manipulate Dashboard controls.
| | CompactOption | The CompactOption property is used to:- determine whether the options of a Check Box, Radio Button or Dashboard control are compacted.
- define whether the options of a Check Box, Radio Button or Dashboard control should be compacted.
| ElementHeight | The ElementHeight property is used to:- Find out or modify the height of the elements in an Organization Chart control.
- Find out or modify the height of the cells in a Dashboard control.
| ElementWidth | The ElementWidth property is used to:- Find out or modify the width of the elements in an Organization Chart control.
- Find out or modify the width of the cells in a Dashboard control.
| MarginHeight | The property MarginHeight property property allows you to: - Find out the vertical margin between the widgets found in a Dashboard control.
- Modify the vertical margin between the widgets found in a Dashboard control.
| MarginWidth | The property MarginWidth property allows you to: - Find out the horizontal margin between the widgets found in a Dashboard control.
- Modify the horizontal margin between the widgets found in a Dashboard control.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|