How to disable dhx_cal_event dhx_cal_select_menu

Hi

          I want to disable dhx_cal_event dhx_cal_select_menu part of a aprticular event.

How can i achieve this?


Hi,
you can use this config to disable selection menu completely:

scheduler.xy.menu_width = 0;

If you want to do it to specific event, you can hide it with css - attach special class for events without a menu, menu will inherit this class:
JS:scheduler.templates.event_class = function(start, end, event){ if( no menu ){ return "no_menu"; } }
CSS:.dhx_cal_event.dhx_cal_select_menu.no_menu{ display:none; }