search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Checkbox inside the events

Asked by Anonymous
7 months 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
7 months ago.

With Daypilot schedeus, forgot to say it, sorry.

Answer posted by Dan Letecky [DayPilot]
7 months 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
7 months ago.

Thanks for the quick answer! It worked properly for me, thanks again!

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.