Schedule Group cell click

I'm looking for a way to trigger the appointment editor window when clicking on a resource group cell. I tried the cell click/ double click events but it only works on child /single resources, I want to be able to create appointments for all the items in a resource group on a single transaction. 

3 Replies

HB Hareesh Balasubramanian Syncfusion Team April 22, 2019 02:09 PM UTC

Hi Juan, 

Greetings from Syncfusion Support. 

We have prepared a sample for your requirement ‘opening editor window in parent resource’ using renderCell event which can be downloaded from the following link. 

    function onRenderCell(args) { 
        if (args.elementType === "resourceGroupCells") { 
            if (args.element.classList.contains('e-resource-group-cells')) { 
                args.element.classList.remove('e-resource-group-cells'); 
            } 
        } 
    } 


Please check and let us know if you need any further assistance. 

Regards, 
Hareesh B 



JJ Juan Jiminez April 22, 2019 04:24 PM UTC

This works pretty well, thanks!


NR Nevitha Ravi Syncfusion Team April 23, 2019 05:20 AM UTC

Hi Juan, 
  
Thanks for your update. we are happy that our solution meets your requirement. 
  
Regards, 
Nevitha 


Loader.
Up arrow icon