This is ng-grid date format
The code-sample as given below.
The code-sample as given below.
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
| angular.module('userApp', ['ngGrid']).controller('myCtrl', function ($scope) { $scope.users = myData; $scope.userColumns = [ { field: 'ContactName', displayName: 'User Name'}, { field: 'ContactEmail', displayName: 'Email' }, { field: 'ContactMobile', displayName: 'Mobile'}, { field: 'AlertOptIn', displayName: 'AlertOptIn'}, { field: 'LastUpdateBy', displayName: 'LastUpdateBy' }, { field: 'LastUpdateDate', displayName: 'LastUpdateDate', cellFilter: "date:'yyyy-MM-dd'}]; $scope.userGridView = { data: 'users', columnDefs: 'userColumns' };}); |
angular.module('userApp', ['ngGrid']).controller('myCtrl', function ($scope) {
$scope.users = myData;
$scope.userColumns = [
{ field: 'ContactName', displayName: 'User Name'},
{ field: 'ContactEmail', displayName: 'Email' },
{ field: 'ContactMobile', displayName: 'Mobile'},
{ field: 'AlertOptIn', displayName: 'AlertOptIn'},
{ field: 'LastUpdateBy', displayName: 'LastUpdateBy' },
{ field: 'LastUpdateDate', displayName: 'LastUpdateDate',
cellFilter: "date:'yyyy-MM-dd'}];
$scope.userGridView = {
data: 'users',
columnDefs: 'userColumns'
};
});