Added search button/menu to series details grid

Also fixed some names to make name navigation easier.
This commit is contained in:
Mark McDowall
2013-09-18 22:49:15 -07:00
parent 4a3410f85a
commit 7320342123
11 changed files with 120 additions and 11 deletions
+8 -1
View File
@@ -8,9 +8,10 @@ define(
'Cells/EpisodeTitleCell',
'Cells/RelativeDateCell',
'Cells/EpisodeStatusCell',
'Cells/EpisodeActionsCell',
'Commands/CommandController',
'moment'
], function (App, Marionette, Backgrid, ToggleCell, EpisodeTitleCell, RelativeDateCell, EpisodeStatusCell, CommandController, Moment) {
], function (App, Marionette, Backgrid, ToggleCell, EpisodeTitleCell, RelativeDateCell, EpisodeStatusCell, EpisodeActionsCell, CommandController, Moment) {
return Marionette.Layout.extend({
template: 'Series/Details/SeasonLayoutTemplate',
@@ -67,6 +68,12 @@ define(
label : 'Status',
cell : EpisodeStatusCell,
sortable: false
},
{
name : 'this',
label : '',
cell : EpisodeActionsCell,
sortable: false
}
],