You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
510 B
20 lines
510 B
12 years ago
|
"use strict";
|
||
|
|
||
|
define(['app','Cells/NzbDroneCell'], function () {
|
||
|
NzbDrone.Cells.TemplatedCell = NzbDrone.Cells.NzbDroneCell.extend({
|
||
|
|
||
|
|
||
|
render: function () {
|
||
|
|
||
|
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);
|
||
|
|
||
|
return this;
|
||
|
}
|
||
|
});
|
||
|
});
|