1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-05 23:57:20 +02:00
Radarr/UI/Cells/ToggleCell.js

40 lines
834 B
JavaScript
Raw Normal View History

2013-06-22 08:24:24 +02:00
'use strict';
2013-06-09 08:20:38 +02:00
define(['app', 'Episode/Layout'], function () {
2013-06-24 04:31:02 +02:00
return Backgrid.Cell.extend({
className: 'toggle-cell clickable',
events: {
'click': '_onClick'
},
_onClick: function () {
var name = this.column.get('name');
this.model.set(name, !this.model.get(name));
this.render();
this.model.save();
},
2013-06-09 08:20:38 +02:00
render: function () {
this.$el.empty();
this.$el.html('<i />');
2013-06-09 08:20:38 +02:00
var name = this.column.get('name');
2013-06-09 08:20:38 +02:00
if (this.model.get(name)) {
this.$('i').addClass(this.column.get('trueClass'));
}
else {
this.$('i').addClass(this.column.get('falseClass'));
2013-06-09 08:20:38 +02:00
}
return this;
}
});
});