Categories | Question details Back To List | ||
dhtmlxCalendar header text Is there a way to change the default calendar header text "Calendar Header" that appears when enabling the header buttons and draggable property when using setHeader()? The buttons appear as well as the header text "Calendat Header". Answer posted by Alex (support) on Mar 11, 2009 02:45 Yes, there is such a way. You can set the following property before draw() method call: ... calendar.winTitle = 'new header'; calendar.draw(); Answer posted by Pablo on Mar 11, 2009 06:27 Yes, that worked perfectly... Thanks. |