SMART datagrid v.1 > Classes > BaseHoliday
It specifies the days which will become holiday before baseData.
The dates as much as this property and nextDays will become holiday based on baseData.
Defaults to 0.
var columns = [{
editor: {
type: "date",
holidays: [{
type: "base",
baseDate: "2016/07/11",
prevDays: 2,
nextDays: 3,
description: "Company Workshop"
}]
}
},
...
];
grid.setColumns(columns);