How to personalize this view

Hi, I want to personalize this popup. The one that opens when you click in "1 more" from the schedule calendar. 


Thanks! 

Captura de Pantalla 2021-10-13 a la(s) 0.25.02.png


3 Replies

PN Praveenkumar Narasimhanaidu Syncfusion Team October 14, 2021 02:50 PM UTC

Hi Brandon, 
  
Greetings from Syncfusion support..! 
  
We have validated your requirement “How to personalize more event popup view” at our end and you can achieve it with the help of popupOpen event. For more information, please refer following documentation link. 
  
App.jsx 
  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; 
        } 
    } 
  
Kindly try the above solution and get back to us if you need any further assistance on this. 
  
Regards, 
Praveenkumar 



BR Brandon October 18, 2021 07:22 PM UTC

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! 



PN Praveenkumar Narasimhanaidu Syncfusion Team October 19, 2021 03:04 PM UTC

Hi Brandon, 

Thanks for your update. 

We have validated your requirement “how to change the blue background color and personalized it in the more event popup view” at our end and let you know that with the help of below CSS you can customize more event popup. We have also prepared a sample for your reference which can be viewed from the following link. 

Index.html 
<style> 
        /* customize the more event popup appointment */ 
        .e-more-popup-wrapper .e-appointment { 
            backgroundrebeccapurple ;   
          } 
        /* customize the more event popup header */ 
        .e-more-popup-wrapper .e-more-event-header { 
            height68px; 
            backgroundwhitesmoke; 
        } 
        /* customize the whole more event popup */ 
        .e-more-popup-wrapper { 
            width300px; 
        } 
    </style> 

Also if you want to customize the appointments within more popup you can use event template which is applicable for the appointments within more popup. 

Kindly try the above solution and get back to us if you need any further assistance. 

Regards, 
Praveenkumar 


Loader.
Up arrow icon