2013-06-22 06:24:24 +00:00
|
|
|
'use strict';
|
2013-06-09 20:51:32 +00:00
|
|
|
|
2013-06-24 23:41:59 +00:00
|
|
|
define(
|
|
|
|
[
|
|
|
|
'marionette',
|
|
|
|
'Cells/NzbDroneCell'
|
|
|
|
], function (Marionette, NzbDroneCell) {
|
|
|
|
return NzbDroneCell.extend({
|
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
|
|
|
var templateName = this.column.get('template') || this.template;
|
|
|
|
|
|
|
|
this.templateFunction = Marionette.TemplateCache.get(templateName);
|
|
|
|
var data = this.cellValue.toJSON();
|
|
|
|
var html = this.templateFunction(data);
|
|
|
|
this.$el.html(html);
|
|
|
|
|
2013-08-20 23:35:19 +00:00
|
|
|
this.delegateEvents();
|
2013-06-24 23:41:59 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
});
|
2013-06-09 20:51:32 +00:00
|
|
|
});
|