Custom Calendar With Bootstrap And Momentjs
I need to create custom calendar, i don't ask for complete code solution here, but i would like only if someone could give me some guidance how i should approach to this, and how t
Solution 1:
for html file
<!DOCTYPE html>
<html>
<head>
<title>Angular Bootstrap Datepicker Demo</title>
<link rel="stylesheet" href="bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="angular-bootstrap-datepicker.css" />
<script src="jquery.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="angular.js"></script>
<script src="angular-bootstrap-datepicker.js" charset="utf-8"></script>
<script type="application/javascript">
<body data-ng-app="demo">
<div>
<div data-ng-controller="AppCtrl">
<input id="datepicker" type="text" data-ng-datepicker data-ng-options="datepickerOptions" data-ng-model="date">
</div>
</div>
app = angular.module('demo', ['ng-bootstrap-datepicker']);
app.controller('AppCtrl', function($scope) {
$scope.datepickerOptions = {
format: 'yyyy-mm-dd',
language: 'fr',
startDate: "2012-10-01",
endDate: "2012-10-31",
autoclose: true,
weekStart: 0
}
});
</script>
</body>
</head>
</html>
for .js file
app = angular.module('demo', ['ng-bootstrap-datepicker']);
app.controller('AppCtrl', function($scope) {
$scope.datepickerOptions = {
format: 'yyyy-mm-dd',
language: 'fr',
startDate: "2012-10-01",
endDate: "2012-10-31",
autoclose: true,
weekStart: 0
}
});
for more info follow my calender app for referance https://github.com/mehulkumar1/datepicker
Post a Comment for "Custom Calendar With Bootstrap And Momentjs"