ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Developing an application or website / Controls, windows and pages / Controls: Available types / Organizer control
  • Events managed by default (window control)
  • Events with procedures for quick use
  • Advanced use of events with procedure
  • Optional events
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
Events associated with an Organizer control
Events managed by default (window control)
AndroidiPhone/iPad WINDEV and WINDEV Mobile manage the following events by default (order of appearance in the code editor):
EventRuntime condition
InitializingRun when the window is opened. *
Before creating the appointmentRun when selecting "New appointment" in the context menu of Organizer control.
Entry in edit in an appointmentRun when selecting "New appointment" in the context menu of Organizer control. This event is run immediately after the event "Before creating the appointment".
Exit from input for the appointmentRun when exiting the input of an appointment (e.g., exit when adding an appointment or when editing an appointment via the context menu)
Selecting an appointmentRun when selecting an existing appointment in the Organizer control. This event is executed when the popup menu opens.
Moving an appointmentRun when moving an appointment in the Organizer control (move performed with the mouse for example).
Resizing an appointmentRun when resizing an appointment in the Organizer control (resize operation performed with the mouse for example).
Deleting an appointmentRun when selecting "Delete the appointment" in the context menu of Organizer control.
Range selectionRun when selecting a time range in the Organizer control.
Whenever changing periodRun when modifying the period displayed in the Organizer control.
Whenever changing the display modeRun when the user changes the display mode of Organizer control. The new mode can be known in this event via OrganizerMode.

(*) By default, the "Initializing" event of each control is run according to the order in which the controls were created in the window. To modify this order of execution:
  1. On the "Window" tab, in the "Order" group, click "Initialization".
  2. In the window displayed, use the arrows on the right to modify the order in which the controls are initialized.

Events with procedures for quick use

Most of the events associated with the Organizer control are run:
  • when using the mouse or the fingertips.
To simplify the operations performed on the appointments of an Organizer control, several procedures are proposed in each event. These procedures take the appointment variable (Appointment variable) as parameter. All the characteristics of the appointment handled by the popup menu, by the mouse or fingertips are automatically assigned to this variable.

Advanced use of events with procedure

You can also allow the user to define more precisely the characteristics of his appointment during an addition or a modification.
AndroidiPhone/iPad To do so, create a window with the information to specify.
In the code, simply open the window in the event "Entry in edit in an appointment". To lock the direct input via the context menu of the Organizer control, the event must return False.
This principle can be applied to all the events called by the context menu of the Organizer control.
Example:
PROCEDURE Edit(aptEdited is Appointment)
 
// Opens the window for entering an appointment
// with the selected appointment (in Creation or Modification mode)
Open(WIN_InputAPT_HFSQL, aptEdited)
 
// Returns False to lock the direct input in the Organizer control
RESULT False
Optional events
AndroidiPhone/iPad Several optional events are supported. To add an optional event:
  1. Select the desired control.
  2. Display the code window of this control (F2 key).
  3. Click the link "Add other events to xxx" at the bottom of the window code, after the last event.
  4. All the optional events available for the control are displayed.
  5. Check the optional event to add and validate.
    Remark: You can select several optional events.
  6. The selected optional event is automatically added to the events managed by the control.
To disable an optional event, simply perform the same operations to display the list of optional events. Then simply uncheck the optional events to delete.
Remark: If the disabled code contains WLanguage code, this code is automatically deleted.
You can manage, for example:
  • the mouse hover over the control,
  • left mouse button down, up, with a double click,
  • right mouse button down, up, double click,
  • mouse wheel, etc.
For more details, see the Optional events.
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help