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)
WEBDEV - Server codeWEBDEV - Browser codePHP WEBDEV manages the following events by default (order of appearance in the code editor):
EventRuntime condition
Initialization (server code)Run when the page is opened.
Moving an appointment (server code)Run when moving an appointment in the Organizer control (move performed with the mouse for example).
Resizing an appointment (server code)Run when resizing an appointment in the Organizer control (resize operation performed with the mouse for example).
Deleting an appointment (server code)Run during the click on the cross found at the top right of selected appointment.
Before creating the appointment (server code)Run when creating an appointment with the mouse (before the input performed by the user).
Exit from appointment input (server code)Run when exiting from the appointment in input.
Whenever the period changes (server code)Run when modifying the period displayed in the Organizer control.
Selecting an appointment (browser code)Run when selecting an existing appointment in the Organizer control. This event is run when an appointment is clicked on.
Moving an appointment (browser code)Run when moving an appointment in the Organizer control (move performed with the mouse for example).
Resizing an appointment (browser code)Run when resizing an appointment in the Organizer control (resize operation performed with the mouse for example).
Selecting a period (browser code)Run when selecting a time range in the Organizer control.
Deleting an appointment (browser code)Run during the click on the cross found at the top right of selected appointment.
Before creating the appointment (browser code)Run when creating an appointment with the mouse (before the input performed by the user).
Enter an appointment in input (browser code)Run 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 appointment input (browser code)Run when exiting from the appointment in input.
Whenever changing period (browser code)Run when modifying the period displayed in the Organizer control.

Events with procedures for quick use

Most of the events associated with the Organizer control are run:
  • when using the mouse or the fingertips.
  • WEBDEV - Server codePHP when using the deletion cross.
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.
WEBDEV - Server codeWEBDEV - Browser codePHP To do so, create a popup with the information to fill.
In the code, simply open the popup in the browser event "Enter the appointment in input".
Example:
PROCEDURE EnterInInput(aptEdited is Appointment)
 
// Open the edit popup
POPUP_Modification.EDT_Title = aptEdited.Title
POPUP_Modification.EDT_Content = aptEdited.Content
 
IF aptEdited.Category = "Personal" THEN
POPUP_Modification.COMBO_Category = 1
ELSE
POPUP_Modification.COMBO_Category = 2
END
 
IF aptEdited.ID = 0 THEN
POPUP_Modification.BTN_Delete.Visible = False
END
 
PopupDisplay(POPUP_Modification)
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