Hi, I want to personalize this popup. The one that opens when you click in "1 more" from the schedule calendar.
Thanks!
|
onPopupOpen(args) {
if (args.type === 'EventContainer') {
let instance = new Internationalization();
let date = instance.formatDate(args.data.date, { skeleton: 'MMMEd' });
(args.element.querySelector('.e-header-date')).innerText = date;
(args.element.querySelector('.e-header-day')).innerText = 'Event count: ' + args.data.event.length;
}
} |
Thank you! My question is more focused on how to change the blue background color and personalized it in the more event popup view.
Thanks!
|
<style>
/* customize the more event popup appointment */
.e-more-popup-wrapper .e-appointment {
background: rebeccapurple ;
}
/* customize the more event popup header */
.e-more-popup-wrapper .e-more-event-header {
height: 68px;
background: whitesmoke;
}
/* customize the whole more event popup */
.e-more-popup-wrapper {
width: 300px;
}
</style> |