Hello, I am using your schedule component and I would like to fully customize tooltip of events inside calendar. I got away with simple templates that just display whatever values event holds inside that are not complicated such as
'<div> ${subject} </div>'
However I would like to display for example formatted start and end times (${startTime.toLocaleString()} is not enough for me) and I would like to call my function (defined inside component that uses this calendar) inside of this string template with parameter of start or end times
'<div> ${myWhateverFunction(someValue)} </div>' ???
I looked at your documentation and found https://ej2.syncfusion.com/documentation/common/template-engine/#custom-helper however I could not make it work.
Could you please provide some example of html template as string variable that calls some function with specific parameter or something that could make this work? In the future I will have to use this approach not only for Dates but for other values as well. Thank you.