Skip to main content

Posts

Showing posts with the label ng-grid date format in angularjs

How to format a date-time column in ng-grid?

This is ng-grid date forma t 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' },     ...