0
The server gives me the date in ISO format (yyyy-MM-ddThh:mm:ss.sssZ). How do I have this date displayed in the input with dd/mm/yyyy hh:mm format?
<input type="date" class="form-control" ng-model="tarefa.createdAt" />
I am using Angularjs v1.6.
the solution I found was to instantiate a Date() object, passing as parameter my date in ISO format. Then my.createdAt task received that date.
– Diego Armando Cacilha