I wrote a piece of code for getting a list of record from db and put them in $scope.records.
var app = angular.module(\'MyApp\', []); app.controller(\'MyAppContr
try with date filter
{{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}}
or
{{record.SubmitDate.replace('/Date(','').replace(')/','') | date:'yyyy-MM-dd HH:mm:ss Z'}}