Lidarr/UI/Cells/ToggleCell.js

43 lines
948 B
JavaScript
Raw Normal View History

2013-06-22 06:24:24 +00:00
'use strict';
2013-06-09 06:20:38 +00:00
define(
[
'backgrid'
], function (Backgrid) {
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 06:20:38 +00:00
render: function () {
this.$el.empty();
2013-06-09 06:20:38 +00:00
this.$el.html('<i />');
2013-06-09 06:20:38 +00:00
var name = this.column.get('name');
2013-06-09 06:20:38 +00:00
if (this.model.get(name)) {
this.$('i').addClass(this.column.get('trueClass'));
}
else {
this.$('i').addClass(this.column.get('falseClass'));
}
return this;
}
});
2013-06-09 06:20:38 +00:00
});