resourceHeaderTemplate Breaking the oncell double clik functionality

I am using Syncfusion React.

When I add the resourceHeaderTemplate for styling my resource headers, I encounter an issue. Specifically, when I double-click on a cell, I do not receive all the expected props, such as startTime, groupIndex, etc.

However, if I remove the resourceHeaderTemplate, everything works perfectly.

Here is my code for the resourceHeaderTemplate:

const resourceHeaderTemplate = (props: any) => {

  // Find the groomer data

  const groomer = groomerData.find((g: any) => g.id === props.resourceData.id);


  // Get the profile image (fetch if necessary)

  const profilePic = groomer?.profilePic

    ? `data:image/png;base64,${groomer.profilePic}`

    : ""; // Fallback avatar


  return (

    <div

      style={{

        display: "flex",

        alignItems: "center",

        justifyContent: "center",

        flexDirection: "column",

        backgroundColor: groomer?.calendar_color || "#f0f0f0",

        padding: "2px",

        borderRadius: "2px",

        width: "100%",

      }}

    >

      {/* Avatar */}

      <CustomAvatar name={groomer.text} size={"44"} src={profilePic} />


      {/* Name */}

      <span

        style={{

          fontSize: "15px",

          fontWeight: "500",

          color: getContrastTextColor(groomer?.calendar_color || "#f0f0f0")

        }}

      >

        {props.resourceData.text}

      </span>

    </div>

  );

};



1 Reply

AK Ashokkumar Karuppasamy Syncfusion Team April 2, 2025 11:26 AM UTC

Hi Ravi,

Thank you for reaching out to us!


Based on the details you shared, we have checked the issue on our end but were unable to replicate it. For your reference, we have provided a validated sample and a screenshot below.




Plese review it .If you are still facing the issue, we would need additional details to replicate the exact problem on our end. We kindly request you to provide the following details, as this information will greatly assist us in understanding and resolving the issue effectively.
  • Please share the exact code snippet used or the specific steps followed to replicate the reported issue
  • Please share details on using the schedule view and the method to retrieve details on a double-click event or any other approach?
  • Please provide a simple sample that replicates the issue or is replicated in our shared samples.

Please get back to us with the required details for further assistance.



Regards,
Ashok

Loader.
Up arrow icon