started Inline edit of quality for episode file

This commit is contained in:
Mark McDowall
2013-08-20 16:35:19 -07:00
parent 324862ee13
commit f9437baf80
7 changed files with 95 additions and 8 deletions

View File

@@ -1,12 +1,17 @@
'use strict';
define(
[
'Cells/TemplatedCell'
], function (TemplatedCell) {
'Cells/TemplatedCell',
'Cells/Edit/QualityCellEditor'
], function (TemplatedCell, QualityCellEditor) {
return TemplatedCell.extend({
className: 'quality-cell',
template : 'Cells/QualityCellTemplate'
template : 'Cells/QualityCellTemplate',
editor : QualityCellEditor,
_startEditing: function (model, column, cell, editor) {
editor._setOptions({ cell: cell });
}
});
});