set insensitive range on dhxCalendarA

Hello all,

Is there any way to set insensitive range to a dhxCalendarA column on a grid?

I would like to make insensitive all dates before today.

Thank you.

Best regards.

Luis

You may use the onCalendarShow event:
myGrid.attachEvent(“onCalendarShow”,function(myCal,row_id,col_ind){
myCal.setInsensitiveRange(null, today_date);
});