I'm new to AngularJs and I want to show the selected date and time of my datepicker in a <pre>
tag by the scope of the ng-model="abc"
.
angular-datepicker (github), angular-datepicker (demo)
Html:
<div class="container">
<div class="row">
<div class="col-md-4">
<div ng-controller="foo">
<input type="datetime" class="form-control" date-time ng-model="myDate" format="dd-MM-yyyy HH:MM" placeholder="Select datetime">
<pre>myDate: {{myDate}}</pre>
</div>
</div>
</div>
</div>
JS:
angular.module('demo', ['datePicker']).controller('foo', ['$scope', function($scope) {
//empty
}]);
Here is a plnkr