Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Ng-grid
Message
 
 
To
All
General information
Forum:
Javascript
Category:
Other
Title:
Ng-grid
Miscellaneous
Thread ID:
01606738
Message ID:
01606738
Views:
68
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
Next
Reply
Map
View

Click here to load this message in the networking platform