In my AngularJS controller, I have the following code snippet:
$scope.detailConfig = [{
title: $filter('translate')('bundle.app.HORA_MINUTO_INICIAL_DESCONSIDERAR'),
property: 'faixaHorariaInicial',
type: 'text'
},{
title: $filter('translate')('bundle.app.HORA_MINUTO_FINAL_DESCONSIDERAR'),
property: 'faixaHorariaFinal',
type: 'text'
}];
Using this code, I am rendering two input fields. I want to add a time mask to these inputs so that users can only enter the time in the format hh:mm.
Can you please guide me on how to achieve this?