I have complete its here: https://stackoverflow.com/a/39221731/6688824
This is how I make ng-repeat
to your content, but when it is that I must have printed date you will see it like this.
Error:
/Date(1475859014037)/
What I'd like to get it to be, it was 31-12-2016 How to date was easy and read fast and simple. However, I have tried this:
{{KundeValue.BuyTime | date: 'dd-mm-yyyy'}}
The problem is that it is the date that supports and creates problems in relation to which I would want to do. All other content that I have made in my ng-repeat
works just fine but it is just date that supports and gives me problems for date
EIDT
var app = angular.module('AllKunder', []);
app.controller('KundeList', function ($scope, $http) {
$scope.totalDisplayed = 50;
$scope.change = function () {
$scope.totalDisplayed += 25;
}
var url = "/JsonClass/ListUser";
$http.get(url).success( function(response) {
$scope.KundeList = response;
console.log("GET Url")
});
})
/Date(1475859014037)/
? – Jorg Oct 8 '16 at 0:49