Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Ng-grid
Message
De
30/08/2014 06:08:41
 
 
Information générale
Forum:
Javascript
Catégorie:
Autre
Titre:
Divers
Thread ID:
01606738
Message ID:
01606762
Vues:
36
This message has been marked as a message which has helped to the initial question of the thread.
>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'" },
You could use any custom format : https://docs.angularjs.org/api/ng/filter/date
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform