Hi,
I have one textbox
currentlyt my requirement is that i need to select only time in that particular Textbox
How to use Timepicker using anjularjs
Could You please help me
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.9/angular.min.js"></script>
<script type="text/javascript">
var app = angular.module('MyApp', [])
app.controller('MyController', function ($scope) {
});
</script>
<div ng-app="MyApp" ng-controller="MyController">
TimePikcer:<input type="text" ng-model="TimePicker"/>
</div>
</body>
</html>