Hello,
I have extended the DHXEvent java class, adding some custom properties.
The events are opened using a custom LightBox.
I would like to know if it is possible to show these custom properties also in the tooltip.
What I have done is to add the “TOOLTIP” extension to the scheduler
scheduler.extensions.add(DHXExtension.TOOLTIP);
The code used for changing the tooltip text is this
scheduler.templates.setTooltipText("message {id}");
But when I try to add a custom property (e.g. one of those not specified in the DHXEvent class), the tooltip shows “undefined”, instead of the value of the property.
How can I access the other properties of the event?
Thanks for the reply!