ui.igScheduler

ui.igScheduler_image

The igScheduler control provides a common scheduling solution for presenting and managing time periods and the associated activities.

The following code snippet demonstrates how to initialize the igScheduler control.

Click here for more information on how to get started using this API. For details on how to reference the required scripts and themes for the igScheduler control read, Using JavaScript Resources in Ignite UI and Styling and Theming Ignite UI.

Code Sample

        <!doctype html>
          <html>
          <head>
          <!-- Infragistics Combined CSS -->
          <link href="css/themes/infragistics/infragistics.theme.css" rel="stylesheet" type="text/css" />
          <link href="css/structure/infragistics.css" rel="stylesheet" type="text/css" />
          <!-- jQuery Core -->
          <script src="js/modernizr.min.js"></script>
          <script src="js/jquery.min.js"></script>
          <!-- jQuery UI -->
          <script src="js/jquery-ui.min.js" type="text/javascript"></script>
          <!-- Infragistics Scripts -->
          <script src="igniteui/js/infragistics.loader.js" type="text/javascript"></script>
			    <script src="data-files/scheduler-data.js" type="text/javascript"></script>
          <script type="text/javascript">
     	          $.ig.loader({
                    scriptPath: "../../igniteui/js/",
                    cssPath: "../../igniteui/css/",
                    resources: "igScheduler"
                });

                $.ig.loader(function () {
                    var scheduleListDataSource = new $.ig.scheduler.ScheduleListDataSource(),
                          appointmentsDS = new $.ig.DataSource({
                              primaryKey: "id",
                              dataSource: appointments
                          });

                    appointmentsDS.dataBind();

                    scheduleListDataSource.resourceItemsSource(resources);
                    scheduleListDataSource.appointmentItemsSource(appointmentsDS);

                    $("#scheduler").igScheduler({
                        height: "550px",
                        width: "100%",
                        agendaViewSettings: {
                            dateRangeInterval: 10
                        },
                        views: ["agendaView"],
                        selectedDate: today,
                        dataSource: scheduleListDataSource
                    });
                });
          </script>
          </head>
          <body>
              <div id="scheduler"></div>
          </body>
          </html>
      

Related Samples

Related Topics

Dependencies

jquery-1.9.1.js
jquery.ui.core.js
jquery.ui.widget.js
intl.js
infragistics.templating.js
infragistics.util.js
infragistics.util.jquery.js
infragistics.ui.scroll.js
infragistics.ext_core.js
infragistics.ext_text.js
infragistics.ext_collections.js
infragistics.ext_io.js
infragistics.ext_ui.js
infragistics.ext_collectionsextended.js
infragistics.ext_threading.js
infragistics.ext_web.js
infragistics.xml.js
infragistics.dv_core.js
infragistics.dv_jquerydom.js
infragistics.datasource.js
infragistics.ui.widget.js
infragistics.scheduler.core.js
infragistics.ui.scheduler.core.js
infragistics.ui.shared.js
infragistics.ui.popover.js
infragistics.ui.validator.js
infragistics.ui.notifier.js
infragistics.ui.editors.js
infragistics.ui.combo.js

Inherits

  • agendaViewSettings

    Type:
    object
    Default:
    {}

    Gets/Sets AgendaView settings.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					agendaViewSettings: {
    						dateRangeInterval: 3
    					}
    				});
    
    				//Get
    				var setting = $(".selector").igScheduler("option", "agendaViewSettings");
    
    				//Set
    				var setting = $(".selector").igScheduler("option", "agendaViewSettings");
    				setting.dateRangeInterval = 1;
    				$(".selector").igScheduler("option", "agendaViewSettings", settings);
    				 
    • dateRangeInterval

      Type:
      number
      Default:
      7

      Gets/Sets the number of days shown in AgendaView mode.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						agendaViewSettings: {
      							dateRangeInterval: 3
      						}
      					});
      
      					//Get
      					var setting = $(".selector").igScheduler("option", "agendaViewSettings");
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "agendaViewSettings");
      					setting.dateRangeInterval = 1;
      					$(".selector").igScheduler("option", "agendaViewSettings", settings);
      					 
  • appointmentDialogSuppress

    Type:
    bool
    Default:
    false

    Gets/Sets whether the appointment dialog and the related day and appointment popups should be shown.

    Code Sample

     
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentDialogSuppress : true
    				});
    
    				// Get
    				var appointmentDialogSuppress = $(".selector").igScheduler("option", "appointmentDialogSuppress");
    
    				// Set
    				$(".selector").igScheduler("option", "appointmentDialogSuppress", true);
    				 
  • dataSource

    Type:
    object
    Default:
    null

    Gets/Sets dataSource of type $.ig.scheduler.ScheduleListDataSource.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					dataSource : ds
    				});
    
    				//Get
    				var ds = $(".selector").igScheduler("option", "dataSource");
    
    				This code will return the appointments which are of type [$.ig.DataSource](ig.datasource)
    				var appointmentItemsSource = ds.appointmentItemsSource();
    
    				This code will return the resources which are array of objects
    				var appointmentItemsSource = ds.resourceItemsSource();
    
    				//Set
    				$(".selector").igScheduler("option", "dataSource", ds);
    				 
  • dayViewSettings

    Type:
    object
    Default:
    {}

    Gets/Sets DayView settings.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					dayViewSettings: {
    						timeSlotInterval: "tenMinutes",
    						dayViewNumberOfDays: "3",
    						workingHoursDisplayMode: "workingHoursOnly"
    					}
    				});
    
    				//Get
    				var setting = $(".selector").igScheduler("option", "dayViewSettings");
    
    				//Set
    				var setting = $(".selector").igScheduler("option", "dayViewSettings");
    				setting.timeSlotInterval = "tenMinutes";
    				$(".selector").igScheduler("option", "dayViewSettings", settings);
    				 
    • dayViewNumberOfDays

      Type:
      number
      Default:
      1

      Gets/Sets the number of days are visible at a time in the day view. 1 to 7 days are supported.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						dayViewSettings: {
      							dayViewNumberOfDays: 5
      						}
      					});
      
      					//Get
      					var setting = $(".selector").igScheduler("option", "dayViewSettings");
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "dayViewSettings");
      					setting.dayViewNumberOfDays = 5;
      					$(".selector").igScheduler("option", "dayViewSettings", settings);
      					 
    • timeSlotInterval

      Type:
      string
      Default:
      "fiveMinutes"

      Gets/Sets the time slots duration. 5, 6, 10, 15, 30 and 60 minutes are supported.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						dayViewSettings: {
      							timeSlotInterval: "tenMinutes"
      						}
      					});
      
      					//Get
      					var setting = $(".selector").igScheduler("option", "dayViewSettings");
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "dayViewSettings");
      					setting.timeSlotInterval = "tenMinutes";
      					$(".selector").igScheduler("option", "dayViewSettings", settings);
      					 
    • workingHoursDisplayMode

      Type:
      string
      Default:
      "workingHoursOnly"

      Gets/Sets whether to display all hours or just working hours.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						dayViewSettings: {
      							workingHoursDisplayMode: "workingHoursAndNonWorkingHours"
      						}
      					});
      
      					//Get
      					var setting = $(".selector").igScheduler("option", "dayViewSettings");
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "dayViewSettings");
      					setting.workingHoursDisplayMode = "workingHoursAndNonWorkingHours";
      					$(".selector").igScheduler("option", "dayViewSettings", settings);
      					 
  • enableTodayButton

    Type:
    bool
    Default:
    true

    Enables/Disables today button.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					enableTodayButton: false
    				});
    
    				//Get
    				var isEnabled = $(".selector").igScheduler("option", "enableTodayButton");
    				 
  • height

    Type:
    enumeration
    Default:
    100%

    Gets/Sets the height of the control.

    Members

    • null
    • Type:object
    • will fit the editor inside its parent container, if no other heights are defined.
    • string
    • The height can be set in pixels (px) and percentage (%).
    • number
    • The height can be set as a number in pixels.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					height : 250
    				});
    				//Get
    				var height = $(".selector").igScheduler("option", "height");
    				 
  • language
    Inherited

    Type:
    string
    Default:
    "en"

    Set/Get the locale language setting for the widget.

    Code Sample

     
    					//Initialize
    				$(".selector").igScheduler({
    					language: "ja"
    				});
    
    				// Get
    				var language = $(".selector").igScheduler("option", "language");
    
    				// Set
    				$(".selector").igScheduler("option", "language", "ja");
    			 
  • locale
    Inherited

    Type:
    object
    Default:
    null

    Set/Get the locale setting for the widget.

    Code Sample

     
    					//Initialize
    				$(".selector").igScheduler({
    					locale: {}
    				});
    
    				// Get
    				var locale = $(".selector").igScheduler("option", "locale");
    
    				// Set
    				$(".selector").igScheduler("option", "locale", {});
    			 
  • monthViewSettings

    Type:
    object
    Default:
    {}

    Gets/Sets MonthView settings.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					monthViewSettings: {
    						isAgendaVisible: true,
    						agendaVisibilityType: "onlyAppointmentsForSelectedMonthViewDay",
    						viewSplitOrientation: "vertical",
    						isHorizontalSeparatorVisibile: true,
    						isVerticalSeparatorVisibile: true,
    						isWeekdayVisible: true,
    						isWeekNumberVisible: true,
    						isPreviousMonthShown: true,
    						isNextMonthShown: true
    					}
    				});
    
    				//Get
    				var setting = $(".selector").igScheduler("option", "monthViewSettings");
    
    				//Set
    				var setting = $(".selector").igScheduler("option", "monthViewSettings");
    				settings.isHorizontalSeparatorVisibile = false;
    				settings.isVerticalSeparatorVisibile = false;
    				settings.isWeekdayVisible = false;
    				settings.isWeekNumberVisible = false;
    				settings.isPreviousMonthShown = false;
    				settings.isNextMonthShown = false;
    				$(".selector").igScheduler("option", "monthViewSettings", settings);
    				 
    • agendaVisibilityType

      Type:
      string
      Default:
      "allAppointments"

      Gets/Sets the scope of appointments that are displayed in a MonthView's AgendaView.

      allAppointments Indicates that appointments for all days should be displayed in an AgendaView when it is a secondary view within a MonthView.
      onlyAppointmentsForSelectedMonthViewDay Indicates that only appointments for the day that is current selected in the associated MonthView should be displayed in an AgendaView that is associated with a MonthView as a secondary view.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							agendaVisibilityType: "onlyAppointmentsForSelectedMonthViewDay"
      						}
      					});
      
      					//Get
      					var type = $(".selector").igScheduler("option", "monthViewSettings").agendaVisibilityType;
      					 
    • appointmentMode

      Type:
      string
      Default:
      "auto"

      Gets/Sets the type of content displayed in a MonthView day.

      auto Depending on the screen size, indicates square indicator mode for the appointment in the Month View, if scheduler size is larger than 768px, otherwise identifies horizontal one.
      indicator Indicates that a square indicator should be displayed.
      detailed Indicates that the subject should be displayed.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							appointmentMode: "indicator"
      						}
      					});
      
      					//Get
      					var mode = $(".selector").igScheduler("option", "monthViewSettings").appointmentMode;
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "monthViewSettings");
      					settings.viewSplitOrientation = "indicator";
      					$(".selector").igScheduler("option", "monthViewSettings", settings);
      					 
    • isAgendaVisible

      Type:
      bool
      Default:
      false

      Gets/Sets the visibility of an AgendaView in a MonthView. When true, the MonthView will display an AgendaView showing the Appointments for the currently selected day at the top of its list of Appointments.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							isAgendaVisible: true
      						}
      					});
      
      					//Get
      					var isVisible = $(".selector").igScheduler("option", "monthViewSettings").isAgendaVisible;
      					 
    • isHorizontalSeparatorVisibile

      Type:
      bool
      Default:
      true

      Gets/sets the visibility of the horizontal separators between weeks in the MonthView.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							isHorizontalSeparatorVisibile: true
      						}
      					});
      
      					//Get
      					var isVisible = $(".selector").igScheduler("option", "monthViewSettings").isHorizontalSeparatorVisibile;
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "monthViewSettings");
      					settings.isHorizontalSeparatorVisibile = false;
      					$(".selector").igScheduler("option", "monthViewSettings", settings);
      					 
    • isNextMonthShown

      Type:
      bool
      Default:
      true

      Gets/sets the visibility of the days from the next month that occur in the last week of a given month.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							isNextMonthShown: true
      						}
      					});
      
      					//Get
      					var isVisible = $(".selector").igScheduler("option", "monthViewSettings").isNextMonthShown;
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "monthViewSettings");
      					settings.isNextMonthShown = false;
      					$(".selector").igScheduler("option", "monthViewSettings", settings);
      					 
    • isPreviousMonthShown

      Type:
      bool
      Default:
      true

      Gets/sets the visibility of the days from the previous month that occur in the first week of a given month.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							isPreviousMonthShown: true
      						}
      					});
      
      					//Get
      					var isVisible = $(".selector").igScheduler("option", "monthViewSettings").isPreviousMonthShown;
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "monthViewSettings");
      					settings.isPreviousMonthShown = false;
      					$(".selector").igScheduler("option", "monthViewSettings", settings);
      					 
    • isVerticalSeparatorVisibile

      Type:
      bool
      Default:
      false

      Gets/sets the visibility of the vertical separators between days of the week in a MonthView.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							isVerticalSeparatorVisibile: true
      						}
      					});
      
      					//Get
      					var isVisible = $(".selector").igScheduler("option", "monthViewSettings").isVerticalSeparatorVisibile;
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "monthViewSettings");
      					settings.isVerticalSeparatorVisibile = false;
      					$(".selector").igScheduler("option", "monthViewSettings", settings);
      					 
    • isWeekdayVisible

      Type:
      bool
      Default:
      true

      Gets/sets the visibility of the weekday names in MonthView.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							isWeekdayVisible: true
      						}
      					});
      
      					//Get
      					var isVisible = $(".selector").igScheduler("option", "monthViewSettings").isWeekdayVisible;
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "monthViewSettings");
      					settings.isWeekdayVisible = false;
      					$(".selector").igScheduler("option", "monthViewSettings", settings);
      					 
    • isWeekNumberVisible

      Type:
      bool
      Default:
      false

      Gets/sets the visibility of the week numbers in a MonthView.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							isWeekNumberVisible: true
      						}
      					});
      
      					//Get
      					var isVisible = $(".selector").igScheduler("option", "monthViewSettings").isWeekNumberVisible;
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "monthViewSettings");
      					settings.isWeekNumberVisible = false;
      					$(".selector").igScheduler("option", "monthViewSettings", settings);
      					 
    • viewSplitOrientation

      Type:
      string
      Default:
      "auto"

      Gets/Sets the orientation, which determines whether the MonthView and AgendaView views are split vertically or horizontally. This option can be used when the AgendaView is displayed in the MonthView.

      auto Depending on the screen size, identifies vertical split if scheduler size is larger than 768px, otherwise identifies horizontal one.
      vertical Identifies a vertical split between the Scheduler's views.
      horizontal Identifies a horizontal split between the Scheduler's views.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						monthViewSettings: {
      							viewSplitOrientation: "horizontal"
      						}
      					});
      
      					//Get
      					var orientation = $(".selector").igScheduler("option", "monthViewSettings").viewSplitOrientation;
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "monthViewSettings");
      					settings.viewSplitOrientation = "horizontal";
      					$(".selector").igScheduler("option", "monthViewSettings", settings);
      					 
  • regional
    Inherited

    Type:
    enumeration
    Default:
    defaults

    Set/Get the regional setting for the widget.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					regional: "ja"
    				});
    				// Get
    				var regional = $(".selector").igScheduler("option", "regional");
    				// Set
    				$(".selector").igScheduler("option", "regional", "ja");
    			 
  • resources

    Type:
    object
    Default:
    null

    Gets the resources collection that holds the activities` owners

    //Initialize
    var resources = [
    { id: 1, displayName: "Trina Friesen" },
    { id: 2, displayName: "Mack Koch" }];
    $(".selector").igScheduler({
    resources: resources
    });

    // Get
    var resources = $(".selector").igScheduler("option", "resources");.

    Code Sample

     
    				//Initialize
    				var resources = [
    					{ id: 1, displayName: "Trina Friesen" },
    					{ id: 2, displayName: "Mack Koch" }];
    				$(".selector").igScheduler({
    					resources: resources
    				});
    				// Get
    				var regional = $(".selector").igScheduler("option", "resources");
    			 
  • selectedDate

    Type:
    date
    Default:
    new newDate()

    Gets/Sets selected date in the Scheduler.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					selectedDate: new Date(2017, 3, 5)
    				});
    
    				//Get
    				var date = $(".selector").igScheduler("option", "selectedDate");
    
    				//Set
    				$(".selector").igScheduler("option", "selectedDate", new Date(2017, 3, 5));
    				 
  • viewMode

    Type:
    enumeration
    Default:
    null

    Gets/Sets current view mode in the Scheduler. If this options is not defined, then the first defined view in the views property is taken.

    Members

    • monthView
    • Type:string
    • Enables MonthView in the Scheduler.
    • agendaView
    • Type:string
    • Enables AgendaView in the Scheduler.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					viewMode: "agendaView"
    				});
    				//Get
    				var mode = $(".selector").igScheduler("option", "viewMode");
    				//Set
    				$(".selector").igScheduler("option", "width", "agendaView");
    				 
  • views

    Type:
    array
    Default:
    []
    Elements Type:
    string

    Lists of all the views, rendered in the Scheduler.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					views: ["monthView", "agendaView"]
    				});
    
    				//Get
    				var views = $(".selector").igScheduler("option", "views");
    				 
  • weekViewSettings

    Type:
    object
    Default:
    {}

    Gets/Sets WeekView settings.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					weekViewSettings: {
    						timeSlotInterval: "fiveMinutes",
    						weekViewDisplayMode: "workingDaysOnly",
    						workingHoursDisplayMode: "workingHoursOnly"
    					}
    				});
    
    				//Get
    				var setting = $(".selector").igScheduler("option", "weekViewSettings");
    
    				//Set
    				var setting = $(".selector").igScheduler("option", "weekViewSettings");
    				setting.timeSlotInterval = 30;
    				$(".selector").igScheduler("option", "weekViewSettings", settings);
    				 
    • timeSlotInterval

      Type:
      string
      Default:
      "fiveMinutes"

      Gets/Sets the time slots duration. 5, 6, 10, 15, 30 and 60 minutes are supported.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						weekViewSettings: {
      							timeSlotInterval: "tenMinutes"
      						}
      					});
      
      					//Get
      					var setting = $(".selector").igScheduler("option", "weekViewSettings");
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "weekViewSettings");
      					setting.timeSlotInterval = "tenMinutes";
      					$(".selector").igScheduler("option", "weekViewSettings", settings);
      					 
    • weekViewDisplayMode

      Type:
      string
      Default:
      "workingDaysOnly"

      Gets/Sets the week view display mode (whether to show all days or just working days).

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						weekViewSettings: {
      							weekViewDisplayMode: "workingDaysOnly"
      						}
      					});
      
      					//Get
      					var setting = $(".selector").igScheduler("option", "weekViewSettings");
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "weekViewSettings");
      					setting.weekViewDisplayMode = "all7Days";
      					$(".selector").igScheduler("option", "weekViewSettings", settings);
      					 
    • workingHoursDisplayMode

      Type:
      string
      Default:
      "workingHoursOnly"

      Gets/Sets whether to display all hours or just working hours.

      Code Sample

       
      					//Initialize
      					$(".selector").igScheduler({
      						weekViewSettings: {
      							workingHoursDisplayMode: "workingHoursOnly"
      						}
      					});
      
      					//Get
      					var setting = $(".selector").igScheduler("option", "weekViewSettings");
      
      					//Set
      					var setting = $(".selector").igScheduler("option", "weekViewSettings");
      					setting.workingHoursDisplayMode = "workingHoursOnly";
      					$(".selector").igScheduler("option", "weekViewSettings", settings);
      					 
  • width

    Type:
    enumeration
    Default:
    100%

    Gets/Sets the width of the control.

    Members

    • null
    • Type:object
    • will stretch to fit data, if no other widths are defined.
    • string
    • The widget width can be set in pixels (px) and percentage (%).
    • number
    • The widget width can be set as a number in pixels.

    Code Sample

     
    				//Initialize
    				$(".selector").igScheduler({
    					width : 700
    				});
    				//Get
    				var width = $(".selector").igScheduler("option", "width");
    				 

For more information on how to interact with the Ignite UI controls' events, refer to
Using Events in Ignite UI.

Note: Calling API methods programmatically does not raise events related to their operation unless specifically stated otherwise by the corresponding API documentation; those events are only raised by their respective user interaction.

Show Details
  • agendaRangeChanged

    Cancellable:
    false

    Fired after agenda view range is changed when using previous and next buttons (fired only in Agenda View).

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • dateRangeInterval
          Type: Number

          Gets a reference to the days to be shown in AgendaView mode.

        • newAgendaRangeStartDate
          Type: Object

          Gets a reference to the newly AgendaView start date.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igscheduleragendarangechanged", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the days to be shown in AgendaView mode.
    					ui.dateRangeInterval;
    					//return reference to the AgendaView start date.
    					ui.newAgendaRangeStartDate;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					agendaRangeChanged: function(evt, ui) {...}
    				});
    			 
  • agendaRangeChanging

    Cancellable:
    true

    Fired before agenda view range is changed when using previous and next buttons (fired only in Agenda View).

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • dateRangeInterval
          Type: Number

          Gets a reference to the days to be shown in AgendaView mode.

        • currentAgendaRangeStartDate
          Type: Object

          Gets a reference to the current AgendaView start date.

        • newAgendaRangeStartDate
          Type: Object

          Gets a reference to the newly AgendaView start date.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igscheduleragendarangechanging", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the days to be shown in AgendaView mode.
    					ui.dateRangeInterval;
    					//return reference to the current AgendaView start date.
    					ui.currentAgendaRangeStartDate;
    					//return reference to the new AgendaView start date.
    					ui.newAgendaRangeStartDate;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					agendaRangeChanging: function(evt, ui) {...}
    				});
    			 
  • appointmentCreated

    Cancellable:
    false

    Fired after an appointment is created.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • appointment
          Type: Object

          Gets a reference to the created appointment.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentcreated", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns a reference to the created appointment
    					ui.appointment;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentCreated: function(evt, ui) {...}
    				});
    			 
  • appointmentCreating

    Cancellable:
    true

    Fired before an appointment is created.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • appointment
          Type: Object

          Gets a reference to the appointment which is going to be created.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentcreating", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns a reference to the appointment which is going to be created
    					ui.appointment;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentCreating: function(evt, ui) {...}
    				});
    			 
  • appointmentDeleted

    Cancellable:
    false

    Fired after an appointment is deleted.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • appointmentId
          Type: Unknown

          Gets the id of the deleted appointment.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentdeleted", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns the id of the deleted appointment
    					ui.appointmentId;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentDeleted: function(evt, ui) {...}
    				});
    			 
  • appointmentDeleting

    Cancellable:
    true

    Fired before an appointment is deleted.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • appointment
          Type: Object

          Gets a reference to the appointment which is going to be deleted.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentdeleting", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns a reference to the appointment which is going to be deleted
    					ui.appointment;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentDeleting: function(evt, ui) {...}
    				});
    			 
  • appointmentDialogClosed

    Cancellable:
    false

    Fired after closing the dialog window for adding/editing appointment.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • element
          Type: Object

          Gets a reference to the appointment dialog.

        • isAppointmentNew
          Type: Bool

          Gets whether we are creating or updating an appointment.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentdialogclosed", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns a reference to the appointment dialog
    					ui.element;
    					// returns whether we are creating or updating an appointment
    					ui.isAppointmentNew;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentDialogClosed: function(evt, ui) {...}
    				});
    			 
  • appointmentDialogClosing

    Cancellable:
    true

    Fired before closing the dialog for adding/editing appointment.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • element
          Type: Object

          Gets a reference to the appointment dialog.

        • isAppointmentNew
          Type: Bool

          Gets whether we are creating or updating an appointment.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentdialogclosing", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns a reference to the appointment dialog
    					ui.element;
    					// returns whether we are creating or updating an appointment
    					ui.isAppointmentNew;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentDialogClosing: function(evt, ui) {...}
    				});
    			 
  • appointmentDialogOpened

    Cancellable:
    false

    Fired after opening the dialog for creating/editing appointment.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • element
          Type: Object

          Gets a reference to the appointment dialog.

        • isAppointmentNew
          Type: Bool

          Gets whether we are creating or updating an appointment.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentdialogopened", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns a reference to the appointment dialog
    					ui.element;
    					// returns whether we are creating or updating an appointment
    					ui.isAppointmentNew;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentDialogOpened: function(evt, ui) {...}
    				});
    			 
  • appointmentDialogOpening

    Cancellable:
    true

    Fired before opening the dialog for creating/editing appointment.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • element
          Type: Object

          Gets a reference to the appointment dialog.

        • isAppointmentNew
          Type: Bool

          Gets whether we are creating or updating an appointment.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentdialogopening", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns a reference to the appointment dialog
    					ui.element;
    					// returns whether we are creating or updating an appointment
    					ui.isAppointmentNew;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentDialogOpening: function(evt, ui) {...}
    				});
    			 
  • appointmentEdited

    Cancellable:
    false

    Fired after an appointment is edited.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • appointment
          Type: Object

          Gets a reference to the edited appointment.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentedited", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns a reference to the edited appointment
    					ui.appointment;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentEdited: function(evt, ui) {...}
    				});
    			 
  • appointmentEditing

    Cancellable:
    true

    Fired before an appointment is edited.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • appointment
          Type: Object

          Gets a reference to the original appointment.

        • newAppointment
          Type: Object

          Gets a reference to the appointment with the edited values.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerappointmentediting", ".selector", function (evt, ui) {
    					// returns a reference to the scheduler
    					ui.owner;
    					// returns a reference to the original appointment
    					ui.appointment;
    					// returns a reference to the appointment with the edited values
    					ui.newAppointment;
    				});
    
    				// Initialize
    				$(".selector").igScheduler({
    					appointmentEditing: function(evt, ui) {...}
    				});
    			 
  • dayChanged

    Cancellable:
    false

    Fired after day is changed when using previous and next buttons (fired only in Day View).

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • newSelectedDate
          Type: Object

          Gets a reference to newly selected date.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerdaychanged", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the selected date.
    					ui.newSelectedDate;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					dayChanged: function(evt, ui) {...}
    				});
    			 
  • dayChanging

    Cancellable:
    true

    Fired before changing the day begins, when using previous and next buttons (fired only in Day View).

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • newSelectedDate
          Type: Object

          Gets a reference to newly selected date.

        • currentSelectedDate
          Type: Object

          Gets a reference to the currently selected date.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerdaychanging", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the new selected date.
    					ui.newSelectedDate;
    					//return reference to the currently selected date.
    					ui.currentSelectedDate;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					dayChanging: function(evt, ui) {...}
    				});
    			 
  • daySelected

    Cancellable:
    false

    Fired when a day is selected from the datepicker calendar.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • date
          Type: Object

          Gets a reference to currently selected date.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerdayselected", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the selected date.
    					ui.date;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					daySelected: function(evt, ui) {...}
    				});
    			 
  • monthChanged

    Cancellable:
    false

    Fired after month is changed when using previous and next buttons (fired only in Month View).

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • newSelectedDate
          Type: Object

          Gets a reference to newly selected date.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulermonthchanged", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the selected date.
    					ui.newSelectedDate;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					monthChanged: function(evt, ui) {...}
    				});
    			 
  • monthChanging

    Cancellable:
    true

    Fired before changing the month begins, when using previous and next buttons (fired only in Month View).

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • newSelectedDate
          Type: Object

          Gets a reference to newly selected date.

        • currentSelectedDate
          Type: Object

          Gets a reference to the currently selected date.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulermonthchanging", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the new selected date.
    					ui.newSelectedDate;
    					//return reference to the currently selected date.
    					ui.currentSelectedDate;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					monthChanging: function(evt, ui) {...}
    				});
    			 
  • rendered

    Cancellable:
    false

    Fired after rendering of the scheduler has finished.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler that performed the rendering.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerrendered", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					rendered: function(evt, ui) {...}
    				});
    			 
  • rendering

    Cancellable:
    false

    Fired before rendering of the scheduler begins.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler performing rendering.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerrendering", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					rendering: function(evt, ui) {...}
    				});
    			 
  • viewChanged

    Cancellable:
    false

    Fired after the view is changed, when using the menu buttons.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • newSelectedView
          Type: String

          Gets a reference to the newly selected view.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerviewchanged", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the newly selected view.
    					ui.newSelectedView;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					viewChanged: function(evt, ui) {...}
    				});
    			 
  • viewChanging

    Cancellable:
    true

    Fired before the view is changed, when using the menu buttons.

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • currentSelectedView
          Type: String

          Gets a reference to the currently selected view.

        • newSelectedView
          Type: String

          Gets a reference to the newly selected view.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerviewchanging", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the currently selected view.
    					ui.currentSelectedView
    					//return reference to the newly selected view.
    					ui.newSelectedView;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					viewChanging: function(evt, ui) {...}
    				});
    			 
  • weekChanged

    Cancellable:
    false

    Fired after week is changed when using previous and next buttons (fired only in Week View).

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • newSelectedDate
          Type: Object

          Gets a reference to newly selected date.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerweekchanged", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the selected date.
    					ui.newSelectedDate;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					weekChanged: function(evt, ui) {...}
    				});
    			 
  • weekChanging

    Cancellable:
    true

    Fired before changing the week begins, when using previous and next buttons (fired only in Week View).

    • evt
      Type: Event

      JQuery event object.

    • ui
      Type: Object

        • owner
          Type: Object

          Gets a reference to the scheduler.

        • newSelectedDate
          Type: Object

          Gets a reference to newly selected date.

        • currentSelectedDate
          Type: Object

          Gets a reference to the currently selected date.

    Code Sample

     
    				//Bind after initialization
    				$(document).on("igschedulerweekchanging", ".selector", function (evt, ui) {
    					//return reference to the scheduler.
    					ui.owner;
    					//return reference to the new selected date.
    					ui.newSelectedDate;
    					//return reference to the currently selected date.
    					ui.currentSelectedDate;
    				});
    
    				//Initialize
    				$(".selector").igScheduler({
    					weekChanging: function(evt, ui) {...}
    				});
    			 
  • changeGlobalLanguage
    Inherited

    .igScheduler( "changeGlobalLanguage" );

    Changes the widget language to global language. Global language is the value in $.ig.util.language.

    Code Sample

     
    				$(".selector").igScheduler("changeGlobalLanguage");
    			 
  • changeGlobalRegional
    Inherited

    .igScheduler( "changeGlobalRegional" );

    Changes the widget regional settins to global regional settings. Global regional settings are container in $.ig.util.regional.

    Code Sample

     
    				$(".selector").igScheduler("changeGlobalRegional");
    			 
  • changeLocale

    .igScheduler( "changeLocale" );

    Changes the all locales into the widget element to the language specified in options.language
    Note that this method is for rare scenarios, see language or locale option setter.

    Code Sample

     
    				$(".selector").igScheduler("changeLocale");
    			 
  • createAppointment

    .igScheduler( "createAppointment", appointment:object );

    Creates an appointment and adds it to the appointment collection.

    • appointment
    • Type:object
    • appointment.

    Code Sample

     
    			$(".selector").igScheduler("createAppointment", appointment);
    			 
  • dateRangeButton

    .igScheduler( "dateRangeButton" );
    Return Type:
    jquery
    Return Type Description:
    The visual editor element.

    Gets reference to the date range UI button.

    Code Sample

     
    			$(".selector").igScheduler("dateRangeButton");
    			 
  • deleteAppointment

    .igScheduler( "deleteAppointment", appointment:object );

    Deletes appointment from the appointment collection.

    • appointment
    • Type:object
    • appointment.

    Code Sample

     
    			$(".selector").igScheduler("deleteAppointment", appointment);
    			 
  • destroy

    .igScheduler( "destroy" );

    Destroys the widget.

    Code Sample

     
    					$(".selector").igScheduler("destroy");
    				 
  • editAppointment

    .igScheduler( "editAppointment", appointment:object, updateAppoinment:object );

    Deletes appointment from the appointment collection.

    • appointment
    • Type:object
    • appointment.
    • updateAppoinment
    • Type:object
    • updateAppoinment.

    Code Sample

     
    			$(".selector").igScheduler("editAppointment", appointment, {
    				subject: "Some subject",
    				location: "Somewhere",
    				start: new Date(2017, 04, 05, 12, 30),
    				end: new Date(2017, 04, 05, 12, 30),
    				resourceId: 4,
    				description: "Lorem ipsum dolor sit amet, consectetur adipisicing elit."
    			});
    			 
  • getAppointmentsInRange

    .igScheduler( "getAppointmentsInRange", start:date, end:date );

    Gets reference to a collection of all appointments for the given time range.

    • start
    • Type:date
    • Start date.
    • end
    • Type:date
    • End date.

    Code Sample

     
    			$(".selector").igScheduler("getAppointmentsInRange", startDate, endDate);
    			 
  • getCalendar

    .igScheduler( "getCalendar" );
    Return Type:
    jquery
    Return Type Description:
    The visual editor element.

    Gets reference to the jQuery calendar UI control.

    Code Sample

     
    			$(".selector").igScheduler("getCalendar");
    			 
  • nextButton

    .igScheduler( "nextButton" );
    Return Type:
    jquery
    Return Type Description:
    The visual editor element.

    Gets reference to the next UI button.

    Code Sample

     
    			$(".selector").igScheduler("nextButton");
    			 
  • previousButton

    .igScheduler( "previousButton" );
    Return Type:
    jquery
    Return Type Description:
    The visual editor element.

    Gets reference to the previous UI button.

    Code Sample

     
    			$(".selector").igScheduler("previousButton");
    			 
  • todayButton

    .igScheduler( "todayButton" );
    Return Type:
    jquery
    Return Type Description:
    The visual editor element.

    Gets reference to the today UI button.

    Code Sample

     
    			$(".selector").igScheduler("todayButton");
    			 
  • ui-icon ui-icon-note

    Class applied to the agenda view tab icon. Default value is 'ui-icon ui-icon-note'.
  • ui-igscheduler-appointment-dialog

    Class applied to the appointment dialog. Default value is 'ui-igscheduler-appointment-dialog'.
  • ui-igscheduler-appointment-dialog-cancel-button

    Class applied to the appointment dialog cancel button. Default value is 'ui-igscheduler-appointment-dialog-cancel-button'.
  • ui-igscheduler-appointment-dialog-create-button

    Class applied to the appointment dialog create button. Default value is 'ui-igscheduler-appointment-dialog-create-button'.
  • ui-igscheduler-appointment-dialog-description

    Class applied to the appointment dialog description editor. Default value is 'ui-igscheduler-appointment-dialog-description'.
  • ui-igscheduler-appointment-dialog-form

    Class applied to the appointment dialog form. Default value is 'ui-igscheduler-appointment-dialog-form'.
  • ui-igscheduler-appointment-form-group

    Class applied to an appointment dialog form group. Default value is 'ui-igscheduler-appointment-form-group'.
  • ui-igscheduler-appointment-dialog-from-date

    Class applied to the appointment dialog from datepicker. Default value is 'ui-igscheduler-appointment-dialog-from-date'.
  • ui-igscheduler-appointment-dialog-from-date-time-label

    Class applied to the appointment dialog from datetime label. Default value is 'ui-igscheduler-appointment-dialog-from-date-time-label'.
  • ui-igscheduler-appointment-dialog-from-time

    Class applied to the appointment dialog from timepicker. Default value is 'ui-igscheduler-appointment-dialog-from-time'.
  • ui-igscheduler-appointment-dialog-location

    Class applied to the appointment dialog location editor. Default value is 'ui-igscheduler-appointment-dialog-location'.
  • ui-igscheduler-appointment-dialog-save-button

    Class applied to the appointment dialog save button. Default value is 'ui-igscheduler-appointment-dialog-save-button'.
  • ui-igscheduler-appointment-dialog-subject

    Class applied to the appointment dialog subject editor. Default value is 'ui-igscheduler-appointment-dialog-subject'.
  • ui-igscheduler-appointment-dialog-to-date

    Class applied to the appointment dialog to datepicker. Default value is 'ui-igscheduler-appointment-dialog-to-date'.
  • ui-igscheduler-appointment-dialog-to-date-time-label

    Class applied to the appointment dialog to datetime label. Default value is 'ui-igscheduler-appointment-dialog-to-date-time-label'.
  • ui-igscheduler-appointment-dialog-to-time

    Class applied to the appointment dialog to timepicker. Default value is 'ui-igscheduler-appointment-dialog-to-time'.
  • ui-igscheduler-appointment-actions

    Class applied to the appointment popover actions - open and delete. Default value is 'ui-igscheduler-appointment-actions'.
  • ui-igscheduler-appointment-popover-content

    Class applied to the appointment popover content. Default value is 'ui-igscheduler-appointment-popover-content'.
  • ui-igscheduler-appointment-popover-delete-button ui-igdanger-btn

    Class applied to the appointment popover delete button. Default value is 'ui-igscheduler-appointment-popover-delete-button ui-igdanger-btn'.
  • ui-igscheduler-appointment-popover-from-to

    Class applied to the appointment popover start and end time. Default value is 'ui-igscheduler-appointment-popover-from-to'.
  • ui-igscheduler-appointment-popover-open-button

    Class applied to the appointment popover open button. Default value is 'ui-igscheduler-appointment-popover-open-button'.
  • ui-igscheduler-appointment-popover-subject

    Class applied to the appointment popover subject. Default value is 'ui-igscheduler-appointment-popover-subject'.
  • ui-igscheduler-body

    Class applied to the body element, which contains the schedule view(s). Default value is 'ui-igscheduler-body'.
  • ui-widget ui-corner-all ui-state-default

    Class applied to the top element when editor is rendered in container. Default value is 'ui-widget ui-corner-all ui-state-default'.
  • ui-igscheduler-navigator-date-range-button

    Class applied to the date display element, which serves as drop down button in AgendaView mode. Default value is 'ui-igscheduler-navigator-date-range-button'.
  • date-range-button-text

    Class applied to the date display span element. Default value is 'date-range-button-text'.
  • ui-igscheduler-day-popover-content

    Class applied to the day popover content. Default value is 'ui-igscheduler-day-popover-content'.
  • ui-igscheduler-day-popover-create-button

    Class applied to the day popover create button. Default value is 'ui-igscheduler-day-popover-create-button'.
  • ui-icon ui-icon-day

    Class applied to the day view tab icon. Default value is 'ui-icon ui-icon-day'.
  • ui-igscheduler-delete-appointment-dialog-actions

    Class applied to the delete appointment dialog actions. Default value is 'ui-igscheduler-delete-appointment-dialog-actions'.
  • ui-igscheduler-delete-appointment-dialog-cancel-button

    Class applied to the delete appointment dialog cancel button. Default value is 'ui-igscheduler-delete-appointment-dialog-cancel-button'.
  • ui-igscheduler-delete-appointment-dialog-confirmation

    Class applied to the delete appointment confirmation dialog. Default value is 'ui-igscheduler-delete-appointment-dialog-confirmation'.
  • ui-igscheduler-delete-appointment-dialog-delete-button ui-igdanger-btn

    Class applied to the delete appointment dialog delete button. Default value is 'ui-igscheduler-delete-appointment-dialog-delete-button ui-igdanger-btn'.
  • ui-igscheduler-delete-occurrence-dialog-actions

    Class applied to the delete occurrence dialog actions. Default value is 'ui-igscheduler-delete-occurrence-dialog-actions'.
  • ui-igscheduler-delete-occurrence-dialog-cancel-button

    Class applied to the delete occurrence dialog cancel button. Default value is 'ui-igscheduler-delete-occurrence-dialog-cancel-button'.
  • ui-igscheduler-delete-occurrence-dialog-delete-button ui-igdanger-btn

    Class applied to the delete occurrence dialog delete button. Default value is 'ui-igscheduler-delete-occurrence-dialog-delete-button ui-igdanger-btn'.
  • ui-igscheduler-delete-occurrence-dialog-delete-series-button ui-igdanger-btn

    Class applied to the delete occurrence dialog delete series button. Default value is 'ui-igscheduler-delete-occurrence-dialog-delete-series-button ui-igdanger-btn'.
  • ui-igscheduler-delete-occurrence-dialog-text

    Class applied to the delete occurrence dialog text. Default value is 'ui-igscheduler-delete-occurrence-text'.
  • ui-igscheduler-navigator-disabled-date-range-button

    Class applied to the date display element in MonthView. Default value is 'ui-igscheduler-navigator-disabled-date-range-button'.
  • ui-igscheduler-edit-appointment-dialog-actions

    Class applied to the edit appointment dialog actions. Default value is 'ui-igscheduler-edit-appointment-dialog-actions'.
  • ui-igscheduler-edit-appointment-dialog-confirmation

    Class applied to the edit appointment confirmation dialog. Default value is 'ui-igscheduler-edit-appointment-dialog-confirmation'.
  • ui-igscheduler-edit-appointment-dialog-occurrence-button

    Class applied to the edit appointment dialog edit occurrence button. Default value is 'ui-igscheduler-edit-appointment-dialog-occurrence-button'.
  • ui-igscheduler-delete-appointment-dialog-series-button

    Class applied to the edit appointment dialog delete button. Default value is 'ui-igscheduler-edit-appointment-dialog-series-button'.
  • ui-igscheduler-header

    Class applied to the header element, which contains date and view navigations. Default value is 'ui-igscheduler-header'.
  • ui-icon ui-icon-calendar

    Class applied to the month view tab icon. Default value is 'ui-icon ui-icon-calendar'.
  • ui-igscheduler-navigator

    Class applied to the date navigation container element. Default value is 'ui-igscheduler-navigator'.
  • ui-igscheduler-navigator-next-button

    Class applied to the next button element. Default value is 'ui-igscheduler-navigator-next-button'.
  • ui-igscheduler-navigator-previous-button

    Class applied to the previous button element. Default value is 'ui-igscheduler-navigator-previous-button'.
  • ui-igscheduler-recurrence-checkbox

    Class applied to the combo resources element.
  • ui-igscheduler-resources-combo

    Class applied to the combo resources element.
  • ui-igscheduler-resources-combo-item-color

    Class applied to the combo item resource color element.
  • ui-igscheduler-resources-combo-item-text

    Class applied to the combo item resource text element.
  • ui-igscheduler

    Class applied to the main/top element. Default value is 'ui-igscheduler'.
  • ui-igscheduler-tabs-selected

    Class applied to the selected view tab. Default value is 'ui-igscheduler-tabs-selected'.
  • ui-igscheduler-side-by-side-group

    Class applied to side by side group of input fields in the appointment dialog. Default value is 'ui-igscheduler-side-by-side-group'.
  • ui-igscheduler-tabs

    Class applied to the individual view mode tabs. Default value is 'ui-igscheduler-tabs'.
  • ui-igscheduler-tabs-container

    Class applied to the tabs container. Default value is 'ui-igscheduler-tabs-container'.
  • ui-igscheduler-today-button

    Class applied to the today button element. Default value is 'ui-igscheduler-today-button'.
  • ui-icon ui-icon-calendar-day

    Class applied to the today button icon. Default value is 'ui-icon ui-icon-calendar-day'.
  • ui-icon ui-icon-week

    Class applied to the week view tab icon. Default value is 'ui-icon ui-icon-week'.

Copyright © 1996 - 2024 Infragistics, Inc. All rights reserved.