<button class="btn btn-success text-white" @click="printCalendar"><i class="fa fa-print" aria-hidden="true"></i> Print Calendar</button>
<ejs-schedule id='scheduler' ref="scheduleObj"
:quickInfoTemplates='quickInfoTemplates'
:popupOpen='onPopupOpen'
:popupClose='onPopupClose'
:current-view="currentView"
:height='height' :width='width'
:eventSettings='eventSettings'
:dateFormat="'dd MMM yyyy'"
:timezone="'UTC'"
v-on:actionComplete="handleActionCompleted">
printCalendar() {Please see the attached video at what I see when I click the print button (on Chrome, but no landscape option is seen on Microsoft edge too).
this.$refs.scheduleObj.print();
},
|
<style>
@page {
size: auto;
}
</style> |