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?


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);
});