2013-06-22 06:24:24 +00:00
|
|
|
'use strict';
|
2013-06-24 23:41:59 +00:00
|
|
|
define(
|
|
|
|
[
|
|
|
|
'backgrid',
|
2013-07-17 06:23:44 +00:00
|
|
|
'moment',
|
2013-06-24 23:41:59 +00:00
|
|
|
'Shared/FormatHelpers'
|
2013-07-17 06:23:44 +00:00
|
|
|
], function (Backgrid, Moment, FormatHelpers) {
|
2013-06-24 23:41:59 +00:00
|
|
|
return Backgrid.Cell.extend({
|
|
|
|
className: 'air-date-cell',
|
2013-06-09 20:51:32 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
render: function () {
|
2013-06-09 20:51:32 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
this.$el.empty();
|
2013-07-17 06:23:44 +00:00
|
|
|
var date = this.model.get(this.column.get('name'));
|
|
|
|
|
|
|
|
if (date) {
|
2013-07-18 00:28:33 +00:00
|
|
|
this.$el.html('<div>' + FormatHelpers.DateHelper(date) + '</div>');
|
2013-07-17 06:23:44 +00:00
|
|
|
|
2013-07-18 00:28:33 +00:00
|
|
|
this.$el.children('div').attr('title', Moment(date).format('LLLL'));
|
2013-07-17 06:23:44 +00:00
|
|
|
}
|
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
return this;
|
2013-06-09 20:51:32 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
}
|
|
|
|
});
|
2013-06-09 20:51:32 +00:00
|
|
|
});
|