Skip to content

Instantly share code, notes, and snippets.

@cbmeeks
Created May 19, 2011 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbmeeks/981266 to your computer and use it in GitHub Desktop.
Save cbmeeks/981266 to your computer and use it in GitHub Desktop.
ExtJS 4
{
name: 'clockOut',
mapping: 'clockOut',
renderer: function(value, id, r) {
var d = new Date(r.data['clockOut']);
return d.format('H:i A');
},
type: 'date'
}
// Results in:
// Mon Jan 01 1900 22:30:00 GMT-0500 (Eastern Standard Time)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment