Available in the Full Version

Schedule - Configuring recurrence activity

igScheduler can be configured to use recurrence activities
Today
April 2025
Month
Agenda
Week
Day
31
31
31
Wednesday
Wy
>
5

This sample is designed for a larger screen size.

On mobile, try rotating your screen, view full size, or email to another device.

Recurrence is used when you need to have repetitions of an activity following a specific recurrence pattern (for example each day at a specific hour or each month at a specific date).

Code View

Copy to Clipboard
<!DOCTYPE html>
<html>
<head>
    <title></title>

    <!--<meta http-equiv="x-ua-compatible" content="IE=9">-->
    <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" />
    <link href="http://cdn-na.infragistics.com/igniteui/2024.2/latest/css/structure/infragistics.css" rel="stylesheet" />

    <script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script>
    <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script>

    <!-- Ignite UI for jQuery Required Combined JavaScript Files -->
    <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.core.js"></script>
    <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.lob.js"></script>
    <script src="http://cdn-na.infragistics.com/igniteui/2024.2/latest/js/infragistics.scheduler-bundled.js"></script>
    <script src="/data-files/scheduler-data.js"></script>
</head>
<body>
    <div id="scheduler"></div>
    <script>
        $( function () {
            $("#scheduler").igScheduler({
                height: "650px",
                width: "100%",
                selectedDate: today,
                dataSource: recurrenceAppointments,
                resources: resources
            });
        });
    </script>

</body>
</html>