How to use

Copy-paste the stylesheet <link> into your <head> to load the CSS.

              
                <link rel="stylesheet" href="../node_modules/fullcalendar/main.min.css">
              
            

Copy-paste the following <script> near the end of your pages under JS Implementing Plugins to enable it.

              
                <script src="../node_modules/fullcalendar/main.min.js"></script>
              
            

Copy-paste the following <script> near the end of your pages under JS Front to enable it.

              
                <script src="../assets/js/hs.fullcalendar.js"></script>
              
            

Copy-paste the init function under JS Plugins Init., before the closing </body> tag, to enable it.

              
                <script>
                  $(document).on('ready', function () {
                    // initialization of fullcalendar
                    $('.js-fullcalendar').each(function () {
                      var fullcalendar = $.HSCore.components.HSFullcalendar.init($(this));
                    });
                  });
                </script>
              
            

Basic example

Drag-n-drop events

Date Clicking & Selecting

With filters

Header with select2

Time Grid

Custom Header