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.
50 lines
1.3 KiB
50 lines
1.3 KiB
"use strict";
|
|
|
|
Backgrid.TemplateBackedCell = Backgrid.Cell.extend({
|
|
className: '',
|
|
template: 'Series/Index/Table/ControlsColumnTemplate',
|
|
|
|
render: function () {
|
|
var data = this.model.toJSON();
|
|
var templateFunction = Marionette.TemplateCache.get(this.template);
|
|
var html = templateFunction(data);
|
|
this.$el.html(html);
|
|
|
|
return this;
|
|
}
|
|
});
|
|
|
|
Backgrid.NzbDroneHeaderCell = Backgrid.HeaderCell.extend({
|
|
events: {
|
|
'click': 'onClick'
|
|
},
|
|
|
|
render: function () {
|
|
this.$el.empty();
|
|
this.$el.append(this.column.get("label"));
|
|
|
|
if (this.column.get('sortable')) {
|
|
this.$el.append(" <i class='icon-sort pull-right'></i>");
|
|
}
|
|
this.delegateEvents();
|
|
return this;
|
|
},
|
|
|
|
direction: function (dir) {
|
|
if (arguments.length) {
|
|
if (this._direction) this.$el.children('i').removeClass(this._convertDirectionToIcon(this._direction));
|
|
if (dir) this.$el.children('i').addClass(this._convertDirectionToIcon(dir));
|
|
this._direction = dir;
|
|
}
|
|
|
|
return this._direction;
|
|
},
|
|
|
|
_convertDirectionToIcon: function (dir) {
|
|
if (dir === 'ascending') {
|
|
return 'icon-sort-up';
|
|
}
|
|
|
|
return 'icon-sort-down';
|
|
}
|
|
}); |