Name | Type | Default | Description |
AutoScrollStep | int | 30 | Determines the scroll speed while dragging an event. |
ColorScheme | string[] | new string[]{} | Determines the color scheme for the event background selector in the event window editor. |
CurrentTimeIndicator | bool | false | Enables/Disables the current time indicator. Current time indicator shows the current time in the appropriate view cells. |
CurrentTimeIndicatorInterval | int | 1 | Determines the refresh interval in seconds for the currentTimeIndicator. |
ContextMenuDataSource | IEnumerable<object> | N/A | Determines the context menu items that are visible when the Context Menu is opened. |
ContextMenuClipboardActions | bool | false | Determines whether the clipboard shortcuts for copy/paste/cut action of events are visible in the Scheduler context menu or not. |
EventTemplate | object | N/A | Allows to customize the content of the event elements. It can be an HTMLTemplateElement that will be applied to all events or it's id as a string or a function that will be called for each event with the following parameters: - eventContent - the content holder for the event,
- eventObj - the event object.
. When using an HTMLTemplateElement it's possible to add property bindings inside the template that will be mapped to the corresponding object properties. |
EventCollectorTemplate | object | N/A | Allows to customize the content of the event collector elements. It can be an HTMLTemplateElement that will be applied to all events or it's id as a string or a function that will be called for each event with the following parameters: - eventContent - the content holder for the event,
- eventObj - the event object.
. When using an HTMLTemplateElement it's possible to add property bindings inside the template that will be mapped to the corresponding object properties. |
EventRenderMode | SchedulerEventRenderMode | SchedulerEventRenderMode.Modern | Determines how the events inside the Scheduler are rendered.- classic - the events are arranged next to each other and try to fit inside the cells.
- modern - the events obey the CSS property that determines their size and if there's not enough space inside the cell for all events to appear, an event collector is created to hold the rest of the events. On mobile phones only collectors are created.
|
EventTooltipTemplate | object | N/A | Allows to customize the content of the event menu items (tooltip). When clicked on an event element an event menu with details opens. It can be an HTMLTemplateElement that will be applied to all events or it's id as a string or a function that will be called for each event with the following parameters: - eventContent - the content holder for the event,
- eventObj - the event object.
. When using an HTMLTemplateElement it's possible to add property bindings inside the template that will be mapped to the corresponding object properties. |
CellTemplate | object | N/A | Allows to customize the content of the timeline cells. It can be an HTMLTemplateElement that will be applied to all cells or it's id as a string or a function that will be called for each cell with the following parameters: - cellContent - the content holder for the cell,
- cellDate - the cell date.
. When using an HTMLTemplateElement it's possible to add property bindings inside the template that will be mapped to the value of the cell. |
DateCurrent | object | new Date() | Determines the currently visible date for the Scheduler. |
DataExport | SchedulerDataExport | N/A | Sets the Schedulers's Data Export options. |
DataSource | IEnumerable<ISchedulerDataSource> | N/A | Determines the events that will be loaded inside the Timeline. Each event represents an object that should contain the following properties: |
DayFormat | SchedulerDayFormat | SchedulerDayFormat.Short | Determines the day format of the dates in the timeline. |
Disabled | bool | false | Enables or disables the element. |
DisableAutoScroll | bool | false | Disables auto scrolling of the timeline while dragging/resizing an event. |
DisableDrag | bool | false | Disables dragging of events. |
DisableDrop | bool | false | Disables dropping of events. |
DisableResize | bool | false | Disables resizing of events. |
DisableSelection | bool | false | Disables the cell selection. |
DisableWindowEditor | bool | false | Disables the window editor for the events. |
DisableContextMenu | bool | false | Disables the context menu of the events and cells. |
DisableEventMenu | bool | false | Disables the event menu that appears when an event/collector has been clicked. |
DisableViewMenu | bool | false | Disables the view menu that allows to select the current Scheduler view. |
DisableDateMenu | bool | false | Disables the date menu that allows to select the current Scheduler date. |
DragOffset | IEnumerable<object> | N/A | Determines the offset for the drag feedback from the pointer. |
Filter | IEnumerable<object> | N/A | Determines the filtering condition for the events.The filter property takes an array of objects or a function. Each object represents a single filtering condition with the following attributes: - name - the name of the Scheduler event property that will be filtered by.
- value - the filtering condition value. The value will be used to compare the events based on the filterMode, for example: [{ name: 'price', value: 25 }]. The value can also be a function. The function accepts a single arguemnt - the value that corresponds to the filtered attribute. The function allows to apply custom condition that is different from the default filter modes. It should return true ( if the evnet passes the filtering condition ) or false ( if the event does not meet the filtering condition ). Here's an example: [{ name: 'roomId', value: (id) => ['2', '3'].indexOf(id + '') > -1 }]. In the example the events that do not have a 'roomId' property that is equal to '2' or '3' will be filtered out.
. If a function is set to the filter property instead, it allows to completely customize the filtering logic. The function passes a single argument - each Scheduler event that will be displayed. The function should return true ( if the condition is met ) or false ( if not ). |
Filterable | IEnumerable<object> | N/A | Determines whether Scheduler's filtering is enabled or not. |
FilterMode | FilterMode | FilterMode.Equals | Determines the filter mode. |
Events | IEnumerable<ISchedulerEvent> | | A getter that returns an array of all Scheduler events. |
FirstDayOfWeek | int | 0 | Determines the first day of week for the Scheduler. By default it's Sunday. |
FooterTemplate | object | N/A | Allows to customize the footer of the Scheduler. It can be an HTMLTemplateElement, it's id as a string or a function with the following parameters: - footerContainer - the footer container.
. |
GroupByDate | bool | false | Determines whether the events will be grouped by date. |
GroupOrientation | SchedulerGroupOrientation | SchedulerGroupOrientation.Horizontal | Determines the grouping orientation. |
GroupTemplate | object | N/A | Allows to customize the content of the group cells that are visible inside the header. It can be an HTMLTemplateElement that will be applied to all cells or it's id as a string or a function that will be called for each group cell with the following parameters: - cellContent - the content holder for the group cell.
- cellObj - the group cell object.
. When using an HTMLTemplateElement it's possible to add property bindings inside the template that will be mapped to the corresponding object properties. |
Groups | IEnumerable<object> | N/A | Determines the resources that the events are grouped by. |
HourEnd | int | 23 | Determines the end hour that will be displayed in 'day' and 'week' views. |
HourStart | int | 0 | Determines the start hour that will be displayed in 'day' and 'week' views. |
HourFormat | SchedulerHourFormat | SchedulerHourFormat.Numeric | Determines the formatting of hours inside the element. |
HeaderTemplate | object | N/A | Allows to customize the header of the Scheduler. It can be an HTMLTemplateElement, it's id as a string or a function with the following parameters: - headerContent - the header container.
. |
HeaderDatePosition | SchedulerHeaderDatePosition | SchedulerHeaderDatePosition.Near | Determines the position of the Date selector inside the Header of the element. |
HeaderNavigationStyle | SchedulerHeaderNavigationStyle | SchedulerHeaderNavigationStyle.Flat | Determines the styling of the Header navigation controls. |
HeaderViewPosition | SchedulerHeaderViewPosition | SchedulerHeaderViewPosition.Far | Determines the position of the view selector control inside the Header of the element. |
HideAllDay | bool | false | Determines whether the 'All Day' container with the all day events is hidden or not. |
HideNonworkingWeekdays | bool | false | Determines whether the days set by 'nonworkingDays' property are hidden or not. |
HideOtherMonthDays | bool | false | Determines whether other month days are visible when view is set to month. When enabled, events that start on other month days are not displayed and the cells that represent such days do not allow the creation of new events on them. Also dragging and droping an event on other month days is not allowed. Reszing is also affected. Events can end on other month days, but cannot start on one. |
HideTodayButton | bool | false | Determines whether the 'Today' button is hidden or not. |
HideViewMenuCheckableItems | bool | false | Determines whether the checkable items in the view selection menu are hidden or not. |
HideWeekend | bool | false | Determines whether the weekend days are hidden or not. |
LegendLocation | SchedulerLegendLocation | SchedulerLegendLocation.Footer | Determines the location of the legend inside the Scheduler. By default the location is inside the footer but it can also reside in the header. |
LegendPosition | SchedulerLegendPosition | SchedulerLegendPosition.Near | Determines the position of the legend. By default it's positioned to the near side but setting it to 'far' will change that. |
MouseWheelStep | int | -1 | Determines the mouse wheel step. When this property is set to a positive number, the scroll step with mouse wheel or trackpad will depend on the property value. |
HorizontalScrollBarVisibility | HorizontalScrollBarVisibility | HorizontalScrollBarVisibility.Auto | Determines weather or not horizontal scrollbar is shown. |
Locale | string | "en" | Determines the language of the Scheduler. |
Max | object | 2100-1-1 | Detetmines the maximum view date for the Scheduler. |
MaxEventsPerCell | int? | N/A | Detetmines the maximum number of events per Scheduler cell. By default this property is null which means that the number of events per cell is automatically determined by the size of the events. |
Min | object | 1900-1-1 | Detetmines the minimum view date for the Scheduler. |
Messages | object | N/A | Sets or gets an object specifying strings used in the element that can be localized. Used in conjunction with the property locale. |
MinuteFormat | MinuteFormat | MinuteFormat.2Digit | Determines the minute formatting inside the Scheduler. |
MonthFormat | MonthFormat | MonthFormat.Long | Determines the month name formatting inside the Scheduler. |
NonworkingDays | IEnumerable<object> | N/A | Determines the nonworking days of the week from 0 to 6, where 0 is the first day of the week and 6 is the last day. Nonworking days will be colored differently inside the Timeline. The color is determined by a CSS variable. |
NonworkingHours | IEnumerable<object> | N/A | Determines the nonworking hours of the day. Hours are represented as numbers inside an array, however ranges of hours can be defined as an array with starting and ending hour separated by a comma. In the timline the cells that represent nonworking days are colored differently from the rest. |
NotificationInterval | int | 60 | Determines the interval (in seconds) at which the element will check for notifications. |
ResizeHandlesVisibility | ResizeHandlesVisibility | ResizeHandlesVisibility.Auto | Determines the visibility of the resize handles. |
ResizeInterval | int | 0 | Determines the rate at which the element will refresh it's content on element resize. By default it's refresh immediately. This property is used for element resize throttling |
Resources | IEnumerable<ISchedulerResource> | N/A | An array of resources that can be assigned to the events. |
RestrictedDates | IEnumerable<object> | N/A | Defines an array of dates that are not allowed to have events on. Events that overlap restricted Dates or start/end on them will not be displayed. |
RestrictedHours | IEnumerable<object> | N/A | Defines an array of hours that are not allowed to have events on. Events that overlap restricted Hours or start/end on them will not be displayed. |
RightToLeft | bool | false | Sets or gets the value indicating whether the element is aligned to support locales using right-to-left fonts. |
ScrollButtonsPosition | SchedulerScrollButtonsPosition | SchedulerScrollButtonsPosition.Near | Determines the position of the date navigation navigation buttons inside the header of the element. |
ShadeUntilCurrentTime | bool | false | Enables/Disables the current time shader. If enabled all cells that represent past time will be shaded. |
ShowLegend | bool | false | Determines whether the resource legend is visible or not. The Legend shows the resources and their items in the footer section of the Scheduler. If filterable is enabled it is possible to filter by resource items by clicking on the corresponding resource item from the legend. |
SortBy | string | "null" | Determines the name of the resource data item property that will be used for sorting the resource data defined as the resource.dataSource. |
SortOrder | SchedulerSortOrder | SchedulerSortOrder.Asc | Determines the sorting order of the resource data items. When set to custom, a custom sorting function has to be defined for the sortFunction property. The asc stands for 'ascending' while desc means 'descending' sorting order. |
SpinButtonsDelay | int | 80 | Determines the repeating delay of the repeat buttons inside the header of the element. Such buttons are the Date navigation buttons and the view scroll buttons. |
SpinButtonsInitialDelay | int | 0 | Determines the initial delay of the repeat buttons inside the header of the element. Such buttons are the Date navigation buttons and the view scroll buttons. |
Statuses | IEnumerable<ISchedulerStatuse> | [{"label":"None"},{"label":"Free","value":"free"},{"label":"Tentative","value":"tentative"},{"label":"Busy","value":"busy"},{"label":"Out of Office","value":"outOfOffice"}] | Defines the statuses that will be available for selection thourgh the window editor for the events. |
Theme | string | "" | Sets or gets the element's visual theme. |
TimelineDayScale | SchedulerTimelineDayScale | SchedulerTimelineDayScale.Hour | Determines the date scale for the timeline cells. |
TimeRulerTicks | bool | false | Enables/Disables the tick marks next to the time cells in the vertical header of the element. Time header appears in 'day' and 'week' views. |
TimeZone | SchedulerTimeZone | SchedulerTimeZone. | Determines the timeZone for the element. By default if the local time zone is used if the property is not set. |
TimeZones | IEnumerable<object> | N/A | Allows to display additional timeZones at once along with the default that is set via the timeZone property. Accepts an array values that represent the ids of valid time zones. The possbile time zones can be viewed in the timeZone property description. By default the local time zone is displayed. |
TooltipDelay | int | 0 | Determines the delay ( in miliseconds) before the tooltip/menu appears. |
TooltipOffset | int[] | new int[]{} | Determines the offset ot the tooltip/menu. |
VerticalScrollBarVisibility | VerticalScrollBarVisibility | VerticalScrollBarVisibility.Auto | Determines weather or not vertical scrollbar is shown. |
View | SchedulerViewType | N/A | Determines the current view. The property accepts view values that are defined in the views property. Custom views should contain a valid value that will be set as the current view. |
ViewType | SchedulerViewType | SchedulerViewType.Day | Indicates the current Scheduler viewType. Custom views must contain a valid type property that corresponds to one of the view types. This property should not be set. |
Views | IEnumerable<SchedulerViewType> | N/A | Determines the viewing date range of the timeline. The property should be set to an array of strings or view objects. When you set it to a string, you should use any of the following: 'day', 'week', 'month', 'agenda', 'timelineDay', 'timelineWeek', 'timelineMonth'. Custom views can be defined as objects instead of strings. The view object should contain the following properties: - label - the label for the view.
- value - the value for the view. The value is the unique identifier for the view.
- type - the type of view. The type should be one of the default allowed values for a view.
- hideWeekend - an Optional property that allows to hide the weekend only for this specific view.
- hideNonworkingWeekdays - an Optional property that allows to hide the nonwrking weekdays for this specific view.
- shortcutKey - an Optional property that allows to set a custom shortcut key for the view.
- hideHours - an Optional property applicable only to timelineWeek view that allows to hide the hour cells and only show the day cells.
|
ViewSelectorType | SchedulerViewSelectorType | SchedulerViewSelectorType.Menu | Determines type of the view selector located in the header of the element. |
WeekdayFormat | WeekDayFormat | WeekDayFormat.Short | Determines the format of the week days inside the element. |
YearFormat | YearFormat | YearFormat.Numeric | Determines the format of the dates inside the timeline header when they represent years. |
Unfocusable | bool | false | Sets or gets if the element can be focused. |
UndoRedoSteps | int | 100 | Determines the maximum number of redo/undo steps that will be remembered by the Scheduler. When the number is reached the oldest records are removed in order to add new. |
Name | Type | Arguments | Description |
AddEvent | void | object eventObj | Adds an event to the Scheduler. Accepts an event object of the following format (same as the dataSource format): <pre>{ label?: string, dateStart: date, dateEnd: date, description?: string, id?: string | number, class?: string, backgroundColor?: string, color?: string, notifications?: { interval: numeric, type?: string, time: number[] }[], allDay?: boolean, disableDrag?: boolean, disableResize?: boolean, repeat?: { repeatFreq: string, repeatInterval: number, repeatOn?: number | number[] | date, repeatEnd?: number | date, exceptions?: { date: date, dateStart?: date, dateEnd?: date, hidden?: boolean, backgroundColor?: string, status?: string, label?: string, description?: string, notifications?: { interval: numeric, type?: string, time: number[] }[], disableDrag?: boolean, disableResize?: boolean }[] }, status?: string }</pre>Args: object eventObj - An object describing a Scheduler event that is not already present in the element. |
AddEventException | void | object eventObj, object exceptionObj | Adds an event exception to a repeating event. The exception occurences for a repeating event can be gathered via the following methods: <ul><li><b>occurences</b></li><li><b>occurrencesBetween</b></li><li><b>occurrenceAfter</b></li><li><b>occurrenceBefore</b></li></ul>. <p>Example usage:</p> <pre>scheduler.addEventException(eventObj, { date: occuranceDate, dateStart: newDateStart, dateEnd: newDateEnd, label: 'Exception' });</pre>Args: object eventObj - The index, id or an object reference of an existing repeating Scheduler event.,object exceptionObj - An event object that describes an exception. Exception event objects must have a <b>date</b> attribute of type Date which indicates the date of occurence. |
BeginUpdate | void | N/A | Starts an update operation. This is appropriate when calling multiple methods or set multiple properties at once. |
CanRedo | bool | N/A | Indicates whether it is possible to redo an action. |
CanUndo | bool | N/A | Indicates whether it is possbile to undo an action. |
ClearState | void | N/A | Removes a previously saved state of the element form LocalStorage according to it's id. "Requires an id to be set to the element." |
CloseEventTooltip | void | N/A | Closes the event tooltip (event menu). |
CloseNotifications | void | N/A | Closes all notifications. |
CloseWindow | void | N/A | Closes the popup window. |
ContainsEvent | bool | object eventObj | Checks whether the Scheduler contains the event.Args: object eventObj - A Scheduler event object. |
CreateEvent | void | string label, string value, string dateStart, string dateEnd, bool allDay | Creates an event and adds it to the Scheduler.Args: string label - Event label.,string value - Event value.,string dateStart - Event date start.,string dateEnd - Event date end.,bool allDay - Event all day. Set it to true to create all day event. |
DeleteUndoRedoHistory | bool | N/A | Deletes the current undo/redo history. |
EndUpdate | void | N/A | Ends the update operation. This method will resume the rendering and will refresh the element. |
ExportData | void | string dataFormat, object callback | Exports the events from the Scheduler.Args: string dataFormat - Determines the format of the exported file. The following values are available: <ul><li><b>pdf</b></li><li><b>xlsx</b></li><li><b>html</b></li><li><b>iCal</b></li></ul>,object callback - A callback that allows to format the exported data based on a condition. For additional details, refer ro the Smart Export Documentation. |
ExportData | void | string dataFormat | Exports the events from the Scheduler. |
GetCellDateRange | object | object cell | Returns the dateStart/dateEnd of a timeline cell.Args: object cell - A Scheduler timeline cell element. |
GetDataSource | object[] | N/A | Returns a JSON representation of the events inside the Scheduler. |
GetDataSourceAsync() | Task<object[]> | 'N/A' | Gets the "DataSource" property as Task<object[]>. |
GetDateCurrentAsync() | Task<object> | 'N/A' | Gets the "DateCurrent" property as Task<object>. |
GetDateFromCoordinates | string | int x, int y | Gets a date from coordinatesArgs: int x - X coordinate.,int y - Y coordinate. |
GetEventExceptions | IEnumerable<object> | object eventObj | Returns an array of all exceptions of the target repeating event.Args: object eventObj - The index, id or an object reference of an existing repeating Scheduler event. |
GetEventExceptions | IEnumerable<object> | int eventObj | Returns an array of all exceptions of the target repeating event.Args: int eventObj - The index, id or an object reference of an existing repeating Scheduler event. |
GetEventExceptions | IEnumerable<object> | string eventObj | Returns an array of all exceptions of the target repeating event.Args: string eventObj - The index, id or an object reference of an existing repeating Scheduler event. |
GetIsAllDayCellFromCoordinates | bool | int x, int y | Gets whether a cell is all day cell from coordinatesArgs: int x - X coordinate.,int y - Y coordinate. |
GetResources | object[] | N/A | Returns a JSON representation of the resources inside the Scheduler. |
GetState | object | N/A | Returns the current state of the Scheduler. Includes the current <b>dateCurernt</b>, <b>dataSource</b> and <b>timeZone</b> properties. |
GetValueAsync() | Task<string> | 'N/A' | Gets the "Value" property as Task<string>. |
InsertEvent | void | object eventObj, int index | Inserts an event as object of the following format (same as the dataSource format): <pre>{ label?: string, dateStart: date, dateEnd: date, description?: string, id?: string | number, class?: string, backgroundColor?: string, color?: string, notifications?: { interval: numeric, type?: string, time: number[] }[], allDay?: boolean, disableDrag?: boolean, disableResize?: boolean, repeat?: { repeatFreq: string, repeatInterval: number, repeatOn?: number | number[] | date, repeatEnd?: number | date, exceptions?: { date: date, dateStart?: date, dateEnd?: date, hidden?: boolean, backgroundColor?: string, status?: string, label?: string, description?: string, notifications?: { interval: numeric, type?: string, time: number[] }[], disableDrag?: boolean, disableResize?: boolean }[] }, status?: string }</pre>Args: object eventObj - An object describing a Scheduler event that is not already present in the element.,int index - A number that represents the index to insert the event at. If not provided the event is inserted at the end of the list. |
InsertEvent | void | object eventObj | Inserts an event as object of the following format (same as the dataSource format): { label?: string, dateStart: date, dateEnd: date, description?: string, id?: string | number, class?: string, backgroundColor?: string, color?: string, notifications?: { interval: numeric, type?: string, time: number[] }[], allDay?: boolean, disableDrag?: boolean, disableResize?: boolean, repeat?: { repeatFreq: string, repeatInterval: number, repeatOn?: number | number[] | date, repeatEnd?: number | date, exceptions?: { date: date, dateStart?: date, dateEnd?: date, hidden?: boolean, backgroundColor?: string, status?: string, label?: string, description?: string, notifications?: { interval: numeric, type?: string, time: number[] }[], disableDrag?: boolean, disableResize?: boolean }[] }, status?: string } |
IsDateRestricted | bool | DateTime date | Returns true or false whether the date is restricted or not.Args: DateTime date - A Date object. |
IsEventRestricted | bool | object eventObj | Returns true or false whether the event is restricted or not.Args: object eventObj - A Scheduler event object or a direct event HTMLElement instance. |
IsHourRestricted | bool | object hour | Returns true or false whether the hour is restricted or not.Args: object hour - A number that represents an hour ( 0 to 23 ) or a Date object. |
IsHourRestricted | bool | int hour | Returns true or false whether the hour is restricted or not.Args: int hour - A number that represents an hour ( 0 to 23 ) or a Date object. |
LoadState | void | IEnumerable<object> state | Loads a previously saved state of the element or checks LocalStorage for any saved states if no argument is passed to the method.Args: IEnumerable<string> state - An Array containing a valid structure of Scheduler events. If no state is provided, the element will check localStorage for a saved state. |
LoadState | void | N/A | Loads a previously saved state of the element or checks LocalStorage for any saved states if no argument is passed to the method. |
NavigateToDate | void | DateTime date | Navigates the Scheduler to a Date.Args: DateTime date - The date to navigate to. |
OccurrenceAfter | void | object eventObj, int date | Returns the first occurance of an event after a date.Args: object eventObj - A Scheduler event object.,int date - The date after which the first occurance of the event will be returned. |
OccurrenceBefore | void | object eventObj, int date | Returns the last occurance of an event before a date.Args: object eventObj - A Scheduler event object.,int date - The date before which the first occurance of the event will be returned. |
Occurrences | void | object eventObj, int count | Returns all occurances of an event.Args: object eventObj - A Scheduler evnet object.,int count - The number of occurances to return. By default 100 date occurances of the event are returned. |
OccurrencesBetween | void | object eventObj, DateTime dateFrom, DateTime dateTo | Returns all occurances of an event between two dates.Args: object eventObj - A Scheduler event object.,DateTime dateFrom - The start date.,DateTime dateTo - The end date. |
OpenEventTooltip | void | object eventObj | Opens the tooltip(event menu) for an event.Args: object eventObj - A Scheduler event object or it's index. |
OpenEventTooltip | void | int eventObj | Opens the tooltip(event menu) for an event.Args: int eventObj - A Scheduler event object or it's index. |
OpenNotification | void | string message, object toastSettings | Opens a custom notification.Args: string message - The notification message.,object toastSettings - Smart.Toast settings to be applied to the Toast element when opening the notification. |
OpenWindow | void | object index | Opens the popup Window for specific event Editing.Args: int index - A number that represents the index of a event or the actual event object to be edited. |
OpenWindow | void | int index | Opens the popup Window for specific event Editing.Args: int index - A number that represents the index of a event or the actual event object to be edited. |
Print | void | N/A | Prepares the Scheduler for printing by opening the browser's Print Preview. |
Redo | bool | int step | Redo the next event modification.Args: int step - A step to redo to. |
Redo | bool | N/A | Redo the next event modification. |
Refresh | void | 'N/A' | Refreshes the Blazor Component. Performs a layout of the HTML Elements and recalculates the measurements. |
Refresh | void | bool fullRefresh | Refereshes the Scheduler by recalculating the Scrollbars. Args: bool fullRefresh - If set the Scheduler will be re-rendered completely. |
Refresh | void | N/A | Refereshes the Scheduler by recalculating the Scrollbars. |
RemoveEvent | void | object index | Removes an existing event.Args: int index - A number that represents the index of an event or the actual event object to be removed. |
RemoveEvent | void | int index | Removes an existing event.Args: int index - A number that represents the index of an event or the actual event object to be removed. |
RemoveEventException | void | object eventObj, object index | Removes an exception from a repeating event.Args: object eventObj - The index, id or an object reference of an existing repeating Scheduler event.,int index - The index, id, occurance date or an object reference of an event exception that belongs to the target repeating event. |
RemoveEventException | void | int eventObj, string index | Removes an exception from a repeating event.Args: int eventObj - The index, id or an object reference of an existing repeating Scheduler event.,int index - The index, id, occurance date or an object reference of an event exception that belongs to the target repeating event. |
RemoveEventException | void | string eventObj, int index | Removes an exception from a repeating event.Args: string eventObj - The index, id or an object reference of an existing repeating Scheduler event.,int index - The index, id, occurance date or an object reference of an event exception that belongs to the target repeating event. |
Render | void | 'N/A' | Re-renders the Blazor Component. This method will make a full re-render. |
SaveState | void | IEnumerable<object> state | Saves the current events of the element to LocalStorage. "Requires an id to be set to the element."Args: IEnumerable<string> state - An Array containing a valid structure of Scheduler events. |
SaveState | void | N/A | Saves the current events of the element to LocalStorage. Requires an id to be set to the element. |
ScrollToDate | void | DateTime date, bool strictScroll, bool autoScroll | Scrolls the Scheduler to a Date.Args: DateTime date - The date to scroll to.,bool strictScroll - Determines whether to scroll strictly to the date or not. This mean sthat the Scheduler wll scroll to the begining of the cell that corresponds to the target date.,bool autoScroll - Calculates the scroll positions and element bounds, then adds an offset to scroll within the middle of the view. |
ScrollToDate | void | DateTime date | Scrolls the Scheduler to a Date. |
ScrollToEvent | void | object index | Scrolls the Scheduler to an event.Args: int index - The index of a Scheduler event or the actual event object to scroll to. |
ScrollToEvent | void | int index | Scrolls the Scheduler to an event.Args: int index - The index of a Scheduler event or the actual event object to scroll to. |
StateHasChanged | void | 'N/A' | Refreshes the state and Re-renders the Blazor Component, if necessary. |
Undo | bool | int step | Undo the last event modification.Args: int step - A step to undo to. |
Undo | bool | N/A | Undo the last event modification. |
UpdateEvent | void | object index, object eventObj | Updates an event object of the following format (same as the dataSource format): <pre>{ label?: string, dateStart: date, dateEnd: date, description?: string, id?: string | number, class?: string, backgroundColor?: string, color?: string, notifications?: { interval: numeric, type?: string, time: number[] }[], allDay?: boolean, disableDrag?: boolean, disableResize?: boolean, repeat?: { repeatFreq: string, repeatInterval: number, repeatOn?: number | number[] | date, repeatEnd?: number | date, exceptions?: { date: date, dateStart?: date, dateEnd?: date, hidden?: boolean, backgroundColor?: string, status?: string, label?: string, description?: string, notifications?: { interval: numeric, type?: string, time: number[] }[], disableDrag?: boolean, disableResize?: boolean }[] }, status?: string }</pre>Args: int index - A number that represents the index of an event or a Scheduler event object.,object eventObj - An object describing a Scheduler event. The properties of this object will be applied to the desired event. |
UpdateEventException | void | object eventObj, object exceptionRef, object exceptionObj | Updates an event exception of a repeating event. The exception occurences for a repeating event can be gathered via the following methods: <ul><li><b>occurences</b></li><li><b>occurrencesBetween</b></li><li><b>occurrenceAfter</b></li><li><b>occurrenceBefore</b></li></ul>. <p>Example usage:</p> <pre>scheduler.updateEventException(eventObj, dateOfOccurance, { dateStart: newDateStart, dateEnd: newDateEnd, label: 'Updated Exception' });</pre>Args: object eventObj - The index, id or an object reference of an existing repeating Scheduler event.,object exceptionRef - The index, id, an occurence date of the exception or an object reference of an existing Scheduler repeating event exception.,object exceptionObj - An event object that describes an exception. All attributes of an exception can be updated except the occurance date (the <b>date</b> attribute). |
Name | Type | Description | Event Detail |
OnBeginUpdate | EventCallback<Event> | This event is triggered when a batch update was started after executing the <b>beginUpdate</b> method. | N/A |
BeginUpdated | event SchedulerBeginUpdatedEventHandler | This event is triggered when a batch update was started after executing the <b>beginUpdate</b> method. | SchedulerBeginUpdatedEventArgs |
OnEndUpdate | EventCallback<Event> | This event is triggered when a batch update was ended from after executing the <b>endUpdate</b> method. | N/A |
EndUpdated | event SchedulerEndUpdatedEventHandler | This event is triggered when a batch update was ended from after executing the <b>endUpdate</b> method. | SchedulerEndUpdatedEventArgs |
OnChange | EventCallback<Event> | This event is triggered when a new cell is selected/unselected. | dynamic value- The new selected Date., dynamic oldValue- The previously selected Date. |
Changed | event SchedulerChangedEventHandler | This event is triggered when a new cell is selected/unselected. | SchedulerChangedEventArgs |
OnItemChange | EventCallback<Event> | This event is triggered when an Event has been updated/inserted/removed/dragged/resized or an exception of a repeating event has been added/updated/removed. | dynamic item- An object that represents the actual item with it's attributes., dynamic type- The type of change that is being done to the item. |
ItemChanged | event SchedulerItemChangedEventHandler | This event is triggered when an Event has been updated/inserted/removed/dragged/resized or an exception of a repeating event has been added/updated/removed. | SchedulerItemChangedEventArgs |
OnItemChanging | EventCallback<Event> | This event is triggered when an Event is going to be updated/inserted/removed. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | dynamic item- An object that represents the actual item with it's attributes., dynamic type- The type of change that is going to be made to the item (e.g. 'inserting', 'removing', 'updating', 'exceptionInserting', 'exceptionUpdating', 'exceptionRemoving'). |
ItemChanging | event SchedulerItemChangingEventHandler | This event is triggered when an Event is going to be updated/inserted/removed. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | SchedulerItemChangingEventArgs |
OnItemClick | EventCallback<Event> | This event is triggered when en event, event item or a context menu item is clicked. | dynamic item- The HTMLElement for the event., dynamic type- The type of item that is clicked. The possible values are: <ul><li>event - when an event item is clicked.</li><li>context - when a context menu item is clicked.</li></ul>., dynamic itemObj- The event object. |
ItemClicked | event SchedulerItemClickedEventHandler | This event is triggered when en event, event item or a context menu item is clicked. | SchedulerItemClickedEventArgs |
OnItemInsert | EventCallback<Event> | This event is triggered when an Event is inserted. | dynamic item- An object that represents the actual item with it's attributes. |
ItemInserted | event SchedulerItemInsertedEventHandler | This event is triggered when an Event is inserted. | SchedulerItemInsertedEventArgs |
OnItemRemove | EventCallback<Event> | This event is triggered when an Event is removed. | dynamic item- An object that represents the actual item with it's attributes. |
ItemRemoved | event SchedulerItemRemovedEventHandler | This event is triggered when an Event is removed. | SchedulerItemRemovedEventArgs |
OnItemUpdate | EventCallback<Event> | This event is triggered when an Event is updated. | dynamic type- The type of item that has been modified., dynamic item- An object that represents the actual item with it's attributes. |
ItemUpdated | event SchedulerItemUpdatedEventHandler | This event is triggered when an Event is updated. | SchedulerItemUpdatedEventArgs |
OnViewChange | EventCallback<Event> | This event is triggered when the view is changed via user interaction. | dynamic oldValue- The value of the previously selected view., dynamic value- The value of the new selected view. |
ViewChanged | event SchedulerViewChangedEventHandler | This event is triggered when the view is changed via user interaction. | SchedulerViewChangedEventArgs |
OnViewChanging | EventCallback<Event> | This event is triggered before the view is changed via user interaction. The view change action can be canceled if event.preventDefault() is called on the event. | dynamic oldValue- The value of the previously selected view., dynamic value- The value of the new selected view. |
ViewChanging | event SchedulerViewChangingEventHandler | This event is triggered before the view is changed via user interaction. The view change action can be canceled if event.preventDefault() is called on the event. | SchedulerViewChangingEventArgs |
OnEventShortcutKey | EventCallback<Event> | This event is triggered when a shortcut key for an event is pressed. By default only 'Delete' key is used. | dynamic key- The shortcut key that was pressed., dynamic target- The event target (HTMLElement)., dynamic eventObj- The scheduler Event object that affected by the keypress. |
EventShortcutKeyed | event SchedulerEventShortcutKeyedEventHandler | This event is triggered when a shortcut key for an event is pressed. By default only 'Delete' key is used. | SchedulerEventShortcutKeyedEventArgs |
OnDateChange | EventCallback<Event> | This event is triggered when the 'dateCurrent' property is changed. This can be caused by navigating to a different date. | dynamic oldValue- The previous current date that was in view., dynamic value- The current date in view. |
DateChanged | event SchedulerDateChangedEventHandler | This event is triggered when the 'dateCurrent' property is changed. This can be caused by navigating to a different date. | SchedulerDateChangedEventArgs |
OnDragStart | EventCallback<Event> | This event is triggered when dragging of an event begins. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | dynamic target- The HTMLElement that corresponds to the event that is going to be dragged., dynamic item- The scheduler Event object that is going to be dragged., dynamic itemDateRange- The start/end dates for the Scheduler Event., dynamic originalEvent- The original event object. |
DragStarted | event SchedulerDragStartedEventHandler | This event is triggered when dragging of an event begins. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | SchedulerDragStartedEventArgs |
OnDragEnd | EventCallback<Event> | This event is triggered when dragging of an event finishes. | dynamic target- The HTMLElement that corresponds to the event that is dragged., dynamic item- The scheduler Event object that is dragged., dynamic itemDateRange- The new start/end dates for the dragged Scheduler Event., dynamic originalEvent- The original event object. |
DragEnded | event SchedulerDragEndedEventHandler | This event is triggered when dragging of an event finishes. | SchedulerDragEndedEventArgs |
OnDropoverCell | EventCallback<Event> | This event is triggered when the user drops an item over a cell. | dynamic target- The HTMLElement that corresponds to the event that is dragged., dynamic date- The cell's date under the pointer., dynamic allDay- Boolean value, which is true when the cell under the pointer is all day cell. |
DropoverCelled | event SchedulerDropoverCelledEventHandler | This event is triggered when the user drops an item over a cell. | SchedulerDropoverCelledEventArgs |
OnResizeStart | EventCallback<Event> | This event is triggered when resizing of a task starts. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | dynamic target- The HTMLElement that corresponds to the event that is going to be resized., dynamic item- The scheduler Event object that is going to be resized., dynamic itemDateRange- The start/end dates for Scheduler Event that is going to be resized., dynamic originalEvent- The original event object. |
ResizeStarted | event SchedulerResizeStartedEventHandler | This event is triggered when resizing of a task starts. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | SchedulerResizeStartedEventArgs |
OnResizeEnd | EventCallback<Event> | This event is triggered when the resizing of an event finishes. | dynamic target- The HTMLElement that corresponds to the event that is resized., dynamic item- The scheduler Event object that is resized., dynamic itemDateRange- The new start/end dates for the resized Scheduler Event., dynamic originalEvent- The original event object. |
ResizeEnded | event SchedulerResizeEndedEventHandler | This event is triggered when the resizing of an event finishes. | SchedulerResizeEndedEventArgs |
OnEditDialogOpening | EventCallback<Event> | This event is triggered when the user starts top open the event dialog window. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | dynamic target- The dialog window that is opening., dynamic item- The event object that is going to be edited., dynamic type- The type of window that is going to open. Two window types are available, the dafault which is an empty string ( does not have a type) and 'confirm' which is displayed when clicked on a repeating event., dynamic eventObj- The event object that is the target of the menu. |
EditDialogOpening | event SchedulerEditDialogOpeningEventHandler | This event is triggered when the user starts top open the event dialog window. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | SchedulerEditDialogOpeningEventArgs |
OnEditDialogOpen | EventCallback<Event> | This event is triggered when the user opens the event dialog window. | dynamic target- The dialog window that is opened., dynamic editors- An object containing all event editors that are present inside the window. This property is undefined when the window is of type 'confirm', because confirm windows do not contain editors., dynamic item- The event object that is being edited., dynamic eventObj- The event object that is the target of the menu. |
EditDialogOpened | event SchedulerEditDialogOpenedEventHandler | This event is triggered when the user opens the event dialog window. | SchedulerEditDialogOpenedEventArgs |
OnEditDialogClose | EventCallback<Event> | This event is triggered when the user closes the event dialog window. | dynamic target- The dialog window that is closed., dynamic editors- An object containing all event editors that are present inside the window. This property is undefined when the window is of type 'confirm', because confirm windows do not contain editors., dynamic item- The event object that is being edited., dynamic eventObj- The event object that is the target of the menu. |
EditDialogClosed | event SchedulerEditDialogClosedEventHandler | This event is triggered when the user closes the event dialog window. | SchedulerEditDialogClosedEventArgs |
OnEditDialogClosing | EventCallback<Event> | This event is triggered when the user is about to close the event dialog window. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | dynamic target- The dialog window that is closing., dynamic item- The event object that is edited., dynamic type- The type of window that is going to be closed. Two window types are available, the dafault which is an empty string ( does not have a type) and 'confirm' which is displayed when clicked on a repeating event., dynamic eventObj- The event object that is the target of the menu. |
EditDialogClosing | event SchedulerEditDialogClosingEventHandler | This event is triggered when the user is about to close the event dialog window. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | SchedulerEditDialogClosingEventArgs |
OnContextMenuOpening | EventCallback<Event> | This event is triggered when the user begins to open the context menu on a timeline cell or an event element. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | dynamic target- The context menu instance., dynamic owner- The HTMLElement that the menu belongs to., dynamic cellObj- The cell object that is the target of the menu. If the target is an event instead of a cell this parameter will be undefined., dynamic eventObj- The event object that is the target of the menu. If the target is a cell instead of an event this paramter will be undefined. |
ContextMenuOpening | event SchedulerContextMenuOpeningEventHandler | This event is triggered when the user begins to open the context menu on a timeline cell or an event element. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | SchedulerContextMenuOpeningEventArgs |
OnContextMenuOpen | EventCallback<Event> | This event is triggered when the context menu is opened. | dynamic target- The context menu instance., dynamic owner- The HTMLElement that the menu belongs to., dynamic cellObj- The cell object that is the target of the menu. If the target is an event instead of a cell this parameter will be undefined., dynamic eventObj- The event object that is the target of the menu. If the target is a cell instead of an event this paramter will be undefined. |
ContextMenuOpened | event SchedulerContextMenuOpenedEventHandler | This event is triggered when the context menu is opened. | SchedulerContextMenuOpenedEventArgs |
OnContextMenuClose | EventCallback<Event> | This event is triggered when the context menu is closed. | dynamic target- The context menu instance., dynamic owner- The HTMLElement that the menu belongs to., dynamic cellObj- The cell object that is the target of the menu. If the target is an event instead of a cell this parameter will be undefined., dynamic eventObj- The event object that is the target of the menu. If the target is a cell instead of an event this paramter will be undefined. |
ContextMenuClosed | event SchedulerContextMenuClosedEventHandler | This event is triggered when the context menu is closed. | SchedulerContextMenuClosedEventArgs |
OnContextMenuClosing | EventCallback<Event> | This event is triggered when the user is about to close the context menu. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | dynamic target- The context menu instance., dynamic owner- The HTMLElement that the menu belongs to., dynamic cellObj- The cell object that is the target of the menu. If the target is an event instead of a cell this parameter will be undefined., dynamic eventObj- The event object that is the target of the menu. If the target is a cell instead of an event this paramter will be undefined. |
ContextMenuClosing | event SchedulerContextMenuClosingEventHandler | This event is triggered when the user is about to close the context menu. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | SchedulerContextMenuClosingEventArgs |
OnEventMenuOpening | EventCallback<Event> | This event is triggered when the event menu is about to open. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | dynamic target- The menu instance., dynamic owner- The HTMLElement of the event that the menu belongs to., dynamic eventObj- The event object that is the target of the menu. |
EventMenuOpening | event SchedulerEventMenuOpeningEventHandler | This event is triggered when the event menu is about to open. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | SchedulerEventMenuOpeningEventArgs |
OnEventMenuOpen | EventCallback<Event> | This event is triggered when the event menu is opened. | dynamic target- The menu instance., dynamic owner- The HTMLElement of the event that the menu belongs to., dynamic eventObj- The event object that is the target of the menu. |
EventMenuOpened | event SchedulerEventMenuOpenedEventHandler | This event is triggered when the event menu is opened. | SchedulerEventMenuOpenedEventArgs |
OnEventMenuClose | EventCallback<Event> | This event is triggered when the event menu is closed. | dynamic target- The menu instance., dynamic owner- The HTMLElement of the event that the menu belongs to., dynamic eventObj- The event object that is the target of the menu. |
EventMenuClosed | event SchedulerEventMenuClosedEventHandler | This event is triggered when the event menu is closed. | SchedulerEventMenuClosedEventArgs |
OnEventMenuClosing | EventCallback<Event> | This event is triggered when the evet menu is about to close. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | dynamic target- The menu instance., dynamic owner- The HTMLElement of the event that the menu belongs to., dynamic eventObj- The event object that is the target of the menu. |
EventMenuClosing | event SchedulerEventMenuClosingEventHandler | This event is triggered when the evet menu is about to close. This event allows to cancel the operation by calling event.preventDefault() in the event handler function. | SchedulerEventMenuClosingEventArgs |
OnDateMenuOpen | EventCallback<Event> | This event is triggered when the date selection menu is opened. | dynamic target- The menu instance. |
DateMenuOpened | event SchedulerDateMenuOpenedEventHandler | This event is triggered when the date selection menu is opened. | SchedulerDateMenuOpenedEventArgs |
OnDateMenuClose | EventCallback<Event> | This event is triggered when the date selection menu is closed. | dynamic target- The menu instance. |
DateMenuClosed | event SchedulerDateMenuClosedEventHandler | This event is triggered when the date selection menu is closed. | SchedulerDateMenuClosedEventArgs |
OnViewMenuOpen | EventCallback<Event> | This event is triggered when the view selection menu is opened. | dynamic target- The menu instance. |
ViewMenuOpened | event SchedulerViewMenuOpenedEventHandler | This event is triggered when the view selection menu is opened. | SchedulerViewMenuOpenedEventArgs |
OnViewMenuClose | EventCallback<Event> | This event is triggered when the view selection menu is closed. | dynamic target- The menu instance. |
ViewMenuClosed | event SchedulerViewMenuClosedEventHandler | This event is triggered when the view selection menu is closed. | SchedulerViewMenuClosedEventArgs |
OnNotificationOpen | EventCallback<Event> | This event is triggered when a notification is opened. | dynamic instance- The toast item instance that is opened. |
NotificationOpened | event SchedulerNotificationOpenedEventHandler | This event is triggered when a notification is opened. | SchedulerNotificationOpenedEventArgs |
OnNotificationClose | EventCallback<Event> | This event is triggered when a notification is closed. | dynamic instance- The toast item instance that is closed. |
NotificationClosed | event SchedulerNotificationClosedEventHandler | This event is triggered when a notification is closed. | SchedulerNotificationClosedEventArgs |
SchedulerTimeZone.Local |
SchedulerTimeZone.DatelineStandardTime |
SchedulerTimeZone.UTC11 |
SchedulerTimeZone.HawaiteratoranStandardTime |
SchedulerTimeZone.AlaskanStandardTime |
SchedulerTimeZone.PacificStandardTimeMexico |
SchedulerTimeZone.PacificStandardTime |
SchedulerTimeZone.USMountainStandardTime |
SchedulerTimeZone.MountainStandardTimeMexico |
SchedulerTimeZone.MountainStandardTime |
SchedulerTimeZone.CentralStandardTime |
SchedulerTimeZone.CentralAmericaStandardTime |
SchedulerTimeZone.CanadaCentralStandardTime |
SchedulerTimeZone.CentralStandardTimeMexico |
SchedulerTimeZone.SAPacificStandardTime |
SchedulerTimeZone.EasternStandardTime |
SchedulerTimeZone.USEasternStandardTime |
SchedulerTimeZone.VenezuelaStandardTime |
SchedulerTimeZone.AtlanticStandardTime |
SchedulerTimeZone.ParaguayStandardTime |
SchedulerTimeZone.CentralBrazilianStandardTime |
SchedulerTimeZone.PacificSAStandardTime |
SchedulerTimeZone.SAWesternStandardTime |
SchedulerTimeZone.NewfoundlandStandardTime |
SchedulerTimeZone.SAEasternStandardTime |
SchedulerTimeZone.ArgentinaStandardTime |
SchedulerTimeZone.ESouthAmericaStandardTime |
SchedulerTimeZone.BahiaStandardTime |
SchedulerTimeZone.MontevideoStandardTime |
SchedulerTimeZone.GreenlandStandardTime |
SchedulerTimeZone.UTC02 |
SchedulerTimeZone.MidAtlanticStandardTime |
SchedulerTimeZone.AzoresStandardTime |
SchedulerTimeZone.CapeVerdeStandardTime |
SchedulerTimeZone.MoroccoStandardTime |
SchedulerTimeZone.UTC |
SchedulerTimeZone.GMTStandardTime |
SchedulerTimeZone.GreenwichStandardTime |
SchedulerTimeZone.CentralEuropeanStandardTime |
SchedulerTimeZone.NamibiaStandardTime |
SchedulerTimeZone.WCentralAfricaStandardTime |
SchedulerTimeZone.WEuropeStandardTime |
SchedulerTimeZone.CentralEuropeStandardTime |
SchedulerTimeZone.RomanceStandardTime |
SchedulerTimeZone.FLEStandardTime |
SchedulerTimeZone.SouthAfricaStandardTime |
SchedulerTimeZone.TurkeyStandardTime |
SchedulerTimeZone.GTBStandardTime |
SchedulerTimeZone.LibyaStandardTime |
SchedulerTimeZone.EEuropeStandardTime |
SchedulerTimeZone.JordanStandardTime |
SchedulerTimeZone.MiddleEastStandardTime |
SchedulerTimeZone.EgyptStandardTime |
SchedulerTimeZone.SyriaStandardTime |
SchedulerTimeZone.IsraelStandardTime |
SchedulerTimeZone.ArabStandardTime |
SchedulerTimeZone.EAfricaStandardTime |
SchedulerTimeZone.ArabicStandardTime |
SchedulerTimeZone.KaliningradStandardTime |
SchedulerTimeZone.IranStandardTime |
SchedulerTimeZone.MauritiusStandardTime |
SchedulerTimeZone.GeorgianStandardTime |
SchedulerTimeZone.CaucasusStandardTime |
SchedulerTimeZone.ArabianStandardTime |
SchedulerTimeZone.AzerbaijanStandardTime |
SchedulerTimeZone.RussianStandardTime |
SchedulerTimeZone.AfghanistanStandardTime |
SchedulerTimeZone.PakistanStandardTime |
SchedulerTimeZone.WestAsiaStandardTime |
SchedulerTimeZone.IndiaStandardTime |
SchedulerTimeZone.SriLankaStandardTime |
SchedulerTimeZone.NepalStandardTime |
SchedulerTimeZone.CentralAsiaStandardTime |
SchedulerTimeZone.BangladeshStandardTime |
SchedulerTimeZone.EkaterinburgStandardTime |
SchedulerTimeZone.MyanmarStandardTime |
SchedulerTimeZone.SEAsiaStandardTime |
SchedulerTimeZone.NCentralAsiaStandardTime |
SchedulerTimeZone.UlaanbaatarStandardTime |
SchedulerTimeZone.ChinaStandardTime |
SchedulerTimeZone.SingaporeStandardTime |
SchedulerTimeZone.NorthAsiaStandardTime |
SchedulerTimeZone.TaipeiStandardTime |
SchedulerTimeZone.WAustraliaStandardTime |
SchedulerTimeZone.KoreaStandardTime |
SchedulerTimeZone.NorthAsiaEastStandardTime |
SchedulerTimeZone.TokyoStandardTime |
SchedulerTimeZone.AUSCentralStandardTime |
SchedulerTimeZone.CenAustraliaStandardTime |
SchedulerTimeZone.WestPacificStandardTime |
SchedulerTimeZone.TasmaniaStandardTime |
SchedulerTimeZone.EAustraliaStandardTime |
SchedulerTimeZone.AUSEasternStandardTime |
SchedulerTimeZone.YakutskStandardTime |
SchedulerTimeZone.VladivostokStandardTime |
SchedulerTimeZone.CentralPacificStandardTime |
SchedulerTimeZone.MagadanStandardTime |
SchedulerTimeZone.KamchatkaStandardTime |
SchedulerTimeZone.FijiStandardTime |
SchedulerTimeZone.NewZealandStandardTime |
SchedulerTimeZone.UTC12 |
SchedulerTimeZone.TongaStandardTime |
SchedulerTimeZone.SamoaStandardTime |