Hide 'Details' and Add Custom Handler for 'Edit (Pencil)'

How can I

  1. Hide the ‘Details’ icon (Clickable Icon #1 in the popup)
  2. When the ‘Edit / Pencil’ icon is clicked (Clickable Icon #2 in the popup), I need a custom handler to do something else in JS. But not when the event cell itself is clicked, that click should be no-action.

Hi,

  1. To remove ‘Details’ icon, please redefine a collection of icons_select config:
    docs.dhtmlx.com/scheduler/api__ … onfig.html

  2. When you click on ‘edit’ icon, “scheduler.edit(id)” is called.
    github.com/DHTMLX/scheduler/blo … r.js#L2162
    github.com/DHTMLX/scheduler/blo … r.js#L4659

You can redefine this function to custom one in your js file before scheduler settings . Ex.: docs.dhtmlx.com/scheduler/snippet/3ca162ba