Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Ng-grid
Message
 
 
À
Tous
Information générale
Forum:
Javascript
Catégorie:
Autre
Titre:
Ng-grid
Divers
Thread ID:
01606738
Message ID:
01606738
Vues:
59
Hi everybody,

I am looking at the documentation for ng-grid

http://angular-ui.github.io/ng-grid/

I have a column which is datetime and I don't like the display of the date in SQL Server format.

Is there a simple way to fix it?

This is the grid definition:
  $scope.gridOptions = {
                    data: 'currentItem.itemHistory',
                    //showFooter: true,
                    columnDefs: [
                    { field: 'dateTime', displayName: 'Date Time', width: 150, resizable: true, sortable: true },
                    { field: 'fieldname', displayName: 'Field Name', width: 120, resizable : true, sortable: true },
                    { field: 'change', displayName: 'Change' },
                    { field: 'operator', displayName: 'Operator', resizable: true, sortable: true },
                    {field: 'salespoint', displayName: 'Sales Point', resizable: true, sortable: true  }]
                    //,plugins: [new ngGridFlexibleHeightPlugin()]
                };
(I've just added risizable and sortable).

Thanks in advance.

UPDATE. Looking a bit closer and with some luck and google search found the solution:
{ field: 'dateTime', displayName: 'Date Time', width: 150, resizable: true, sortable: true, cellFilter: "date: 'medium'" },
If it's not broken, fix it until it is.


My Blog
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform