Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Raghu on Nov 12, 2009 03:16
open dhtmlx forum
Grid

Hi,

How to set the current date and date range in the calender of the grid.?
How to change the skin of the calender in the grid?

Answer posted by Alex (support) on Nov 12, 2009 03:45

Hello,

you can try to use onDhxCalendarCreated event. For example:

grid.init()

grid.attachEvent("onDhxCalendarCreated",function(calendar){
  calendar.setSkin("dhx_skyblue");
  calendar.setSensitive(dateFrom,dateTo);
 });