DHTMLX Scheduler

DHTMLX Scheduler (ODC)

Stable version 0.1.0 (Compatible with ODC)
Uploaded on 22 Feb by Community Labs
DHTMLX Scheduler

DHTMLX Scheduler (ODC)

Documentation
0.1.0

Input Parameters

  1. Events: A list of events to display on the scheduler. Must adhere to the data model structure.
  2. InitialDate: The default date the scheduler will display on load.
  3. IsReadOnly: A boolean flag indicating whether the scheduler should be in read-only mode.


Events

  1. OnAddEvent: Triggered when a new event is added.
  2. OnDeleteEvent: Triggered when an event is deleted.
  3. OnEditEvent: Triggered when an event is modified.


Data Model Structure

The scheduler uses a structured data model for events. Each event object must include the following attributes:


Attribute

Type

Description
IdIdentifierUnique identifier for the event.
TitleTextTitle or name of the event.
StartDateDateTimeStart date and time of the event.
EndDateDateTimeEnd date and time of the event.


How to Use

  1. Add the Component: Drag and drop the DHTMLX Scheduler component onto your screen.
  2. Bind Data: Assign your event list to the Events input parameter and configure the InitialDate parameter.
  3. Customize Interactions:
    • Use the OnAddEvent, OnDeleteEvent, and OnEditEvent triggers to implement custom logic for event creation, deletion, or editing.
    • For read-only use, set IsReadOnly to True.