I have the calendar and it generates a piece of information that shows me this way:
/Date(1513828800000)/
in the view I'm getting the date from:
<input type="date" class="form-control" id="txtvalor" ng-model="datos.Fecha" placeholder="Fecha" />
try this way
<td scope="row">{{datos.Fecha | date:'dd-MM-yyyy'}}</td>
not like this either:
<td scope="row">{{ datos.Fecha | date : format : timezone}}</td>
Do you know another way?