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 procedures
  • Optional events
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Events managed by default (window control)
WEBDEV - Server codeWEBDEV - Browser codePHP The following events appear by default in the WEBDEV code editor:
EventRuntime condition
Initialization (server code)Executed when the page is opened.
Moving an appointment (server code)Executed when moving an appointment in the Organizer control (move performed with the mouse for example).
Resizing an appointment (server code)Executed 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)Executed when creating an appointment with the mouse (before the input performed by the user).
Exit from appointment input (server code)Executed when exiting from the appointment in input.
Whenever the period changes (server code)Executed when modifying the period displayed in the Organizer control.
Selecting an appointment (browser code)Executed when selecting an existing appointment in the Organizer control. This event is executed when an appointment is clicked on.
Moving an appointment (browser code)Executed when moving an appointment in the Organizer control (move performed with the mouse for example).
Resizing an appointment (browser code)Executed when resizing an appointment in the Organizer control (resize operation performed with the mouse for example).
Selecting a period (browser code)Executed 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)Executed when creating an appointment with the mouse (before the input performed by the user).
Enter an appointment in input (browser code)Executed when selecting "New appointment" in the context menu of Organizer control. This event is run immediately after the "Before creating the appointment" event.
Exit from appointment input (browser code)Executed when exiting from the appointment in input.
Whenever changing period (browser code)Executed 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 context menu, by the mouse or fingertips are automatically assigned to this variable.

Advanced use of events with procedures

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: 03/11/2025

Send a report | Local help