I have this simple piece of Angular Code which displays the selected time. But the date selected is not binding with the text area. As an alternative I used HTML5 datetime-local input which worked properly. It's the jQuery timepicker which is not working.
<!DOCTYPE html>
<html lang="en" data-framework="angularjs">
<head>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
</head>
<body ng-app="myApp">
<div ng-controller="myCtrl">
<input type="text" id="dates" ng-model="tdata">
<text>{{tdata}}</text>
</div>
</body>
<script type="text/javascript">
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$("#dates").datepicker({
changeMonth: true,
changeYear: true
});
})
</script>
</html>