i have date like sat Nov 15 2014 i want to convert this date in 15/11/2014 and i am using.
$filter('date')($scope.visa.rdate, 'dd/MM/yyyy');
but it's not working.
Convert $scope.visa.rdate (looks like it's a string) to Date object before you pass it into $filter:
$filter('date')(new Date($scope.visa.rdate), 'dd/MM/yyyy');
$scope.visa.rdate exactly?
it's not workingis not a proper problem statement. What does happen and what errors are thrown (if any)?