Categories | Question details Back To List | ||
dhtmlxScheduler - event header Hi, Is it possible to remove the event header ? I try to put 0px width in the ".dhx_cal_event .dhx_title" style , but I'd like that the event body use the new space available. Thanks in advance Cheers Matteo Answer posted by Alex (support) on Nov 09, 2009 06:48 Hello, to hide header you can use change the css: .dhx_cal_event .dhx_title{ and redefine header template: scheduler.templates.event_header = function(){ return ""; } |