v7.3.0

Print
Feature

This feature enables printing of the current Calendar mode.

Usage

const calendar = new Calendar({
    features : {
        print : true
    }
});

// Simple print calendar.print();

This feature is disabled by default.

Useful configs

Config Description
wysiwyg Print week rows matching on-screen heights
titleRenderer Custom function for the print document title
No results

Configs

Configs are options you supply in a configuration object when creating an instance of this class
  • This config is passed to the Grid print feature. Print dialog is ignored, instead Grid is printed with best default configs.

  • printer : Object
    private

    Config for printer.

  • printers : Map
    private

    Map of printer classes to use in print feature

Functions

Functions are methods available for calling on the class
    • print( )
      ASYNC

      Prints the current active view of the Calendar

    Events

    Events are triggered for certain actions in this class and can be listened for to react to those actions in your code
    • Fires when print has finished

    Event handlers

    Event handlers are callbacks called as a result of certain actions in this class
    • Called when print has finished

    id: print

    Source path

    Calendar/feature/print/Print.js

    Demo

    examples/basic

    Contents