I need to load%% of dates that are stored in values in millisecond format.
Example
<label>Data de expiração:</label>
<input class="form-control" type="date" name="dataexpiracao" ng-model="PontoRelevancia.dados_Evento.dataexpiracao | date:'dd/MM/yyyy' ">
When I use this filter using input type="date"
it can put in the desired format, but using input type="text"
it does not work .
What can I do to load date information in millisecond using input type="date"
?