Checkbox inside the events
Asked by Anonymous
2 years ago.
I am making a demo application and when I hover over one of the events a checkbox appears, how can I remove it?
Comment posted by Anonymous
2 years ago.
With Daypilot schedeus, forgot to say it, sorry.
Answer posted by Dan Letecky [DayPilot]
2 years ago.
You probably copied one of the examples that create a hover icon using an event active area in the onBeforeEventRender event handler.
It might look like this:
onBeforeEventRender: args => {
args.data.areas = [
{
right: 5,
top: 5,
height: 20,
width: 20,
visibility: "Hover",
// ...
]
}
You will need to remove it to get rid of the box.
Comment posted by Anonymous
2 years ago.
Thanks for the quick answer! It worked properly for me, thanks again!
This question is more than 1 month old and has been closed. Please create a new question if you have anything to add.