var DemoApp = angular.module('DemoApp', ['dx']);
DemoApp.controller('DemoController', function DemoController($scope) {
var now = new Date();
$scope.zoomLevels = ["month", "year", "decade", "century"];
$scope.currentValue = new Date();
$scope.calendarDisabled = false;
$scope.isMondayFirst = 0;
$scope.minDateValue = undefined;
$scope.maxDateValue = undefined;
$scope.zoomLevel = $scope.zoomLevels[0];
$scope.cellTemplate = "cell";
$scope.setMinDate = function(e) {
if(e.value) {
$scope.minDateValue = new Date(now.getTime() - 1000*60*60*24*3);
} else {
$scope.minDateValue = undefined;
}
};
$scope.setMaxDate = function(e) {
if(e.value) {
$scope.maxDateValue = new Date(now.getTime() + 1000*60*60*24*3);
} else {
$scope.maxDateValue = undefined;
}
};
$scope.disableWeekend = function(e) {
if(e.value) {
$scope.disabledDates = function(data) {
return data.view === "month" && isWeekend(data.date);
};
} else {
$scope.disabledDates = undefined;
}
};
$scope.setFirstDay = function(e) {
if(e.value) {
$scope.firstDay = 1;
} else {
$scope.firstDay = 0;
}
};
$scope.useCellTemplate = function(e) {
if(e.value) {
$scope.cellTemplate = getCellTemplate;
} else {
$scope.cellTemplate = "cell";
}
};
var holydays = [[1,0], [4,6], [25,11]];
function isWeekend(date) {
var day = date.getDay();
return day === 0 || day === 6;
}
function getCellTemplate(data) {
var cssClass = "";
if(isWeekend(data.date))
cssClass = "weekend";
$.each(holydays, function(_, item) {
if(data.date.getDate() === item[0] && data.date.getMonth() === item[1]) {
cssClass = "holyday";
return false;
}
});
return "<span class='" + cssClass + "'>" + data.text + "</span>";
}
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.4/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.4/css/dx.light.css" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.16/angular.min.js"></script>
<script>window.angular || document.write(decodeURIComponent('%3Cscript src="js/angular.min.js"%3E%3C/script%3E'))</script>
<script src="https://cdn3.devexpress.com/jslib/20.2.4/js/dx.all.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container" ng-app="DemoApp" ng-controller="DemoController">
<div id="calendar-demo">
<div class="widget-container">
<div id="calendar-container" dx-calendar="{
bindingOptions: {
min: 'minDateValue',
max: 'maxDateValue',
disabledDates: 'disabledDates',
firstDayOfWeek: 'firstDay',
disabled: 'calendarDisabled',
value: 'currentValue',
zoomLevel: 'zoomLevel',
cellTemplate: 'cellTemplate'
}
}"></div>
</div>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<div dx-check-box="{
text: 'Specified min value',
value: false,
onValueChanged: setMinDate
}"></div>
</div>
<div class="option">
<div dx-check-box="{
text: 'Specified max value',
value: false,
onValueChanged: setMaxDate
}"></div>
</div>
<div class="option">
<div dx-check-box="{
text: 'Disable weekend',
value: false,
onValueChanged: disableWeekend
}"></div>
</div>
<div class="option">
<div dx-check-box="{
text: 'Monday as the first day of a week',
value: false,
onValueChanged: setFirstDay
}"></div>
</div>
<div class="option">
<div dx-check-box="{
text: 'Use the Custom Cell Template',
value: false,
onValueChanged: useCellTemplate
}"></div>
</div>
<div class="option">
<div dx-check-box="{
text: 'Disabled',
bindingOptions: {
value: 'calendarDisabled'
}
}"></div>
</div>
<div class="option">
<span>Zoom level</span>
<div id="zoom-level" dx-select-box="{
dataSource: zoomLevels,
bindingOptions: {
value: 'zoomLevel'
}
}"></div>
</div>
<div class="option">
<span>Selected date</span>
<div id="selected-date" dx-date-box="{
width: '100%',
bindingOptions: {
value: 'currentValue'
}
}"></div>
</div>
</div>
</div>
</div>
</body>
</html>
.widget-container {
margin-right: 320px;
}
#calendar-container {
margin: auto;
}
.dx-calendar-cell:not(.dx-calendar-other-month) .weekend,
.dx-calendar-cell:not(.dx-calendar-other-month) .holyday {
text-shadow: none;
font-weight: bold;
}
.dx-calendar-cell:not(.dx-calendar-other-month) .weekend {
color: #3030FF;
}
.dx-state-disabled.dx-calendar .dx-calendar-cell:not(.dx-calendar-other-month) .weekend {
color: #8080FF;
}
.dx-calendar-cell:not(.dx-calendar-other-month) .holyday {
color: #FF3030;
}
.dx-state-disabled.dx-calendar .dx-calendar-cell:not(.dx-calendar-other-month) .holyday {
color: #FF8080;
}
.options {
padding: 20px;
background-color: rgba(191, 191, 191, 0.15);
position: absolute;
right: 0;
top: 0;
bottom: 0;
width: 260px;
}
.caption {
font-weight: 500;
font-size: 18px;
}
.option {
margin-top: 10px;
}