Hi,
I have one textbox
in that i am trying to enter only time innbelow format only
Ex:10:23,19:45
rather than if i try to enter any other format need to display validation message
Could you please help me
<html xmlns="http://www.w3.org/1999/xhtml">
<head >
<title>Index</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.7.8/angular.min.js"></script>
<script src="../../Scripts/dirPagination.js" type="text/javascript"></script>
<script type="text/javascript">
var app = angular.module('MyApp', ['angularUtils.directives.dirPagination'])
app.controller('MyController', function ($scope, $http) {
})
</script>
</head>
<body>
<div ng-app="MyApp" ng-controller="MyController">
<table class="table table-bordered table-responsive">
<tr>
<th>Time</th>
</tr>
<tbody dir-paginate="m in Customers|orderBy:sortKey:reverse|filter:search|itemsPerPage:10">
<tr>
<td><input type="text" date='HH:mm' ng-model="m.Time" /></td>
</tr>
</tbody>
</table>
</div>
</body>
</html>