Added sorting icons to series table

This commit is contained in:
Mark McDowall 2013-04-23 00:11:52 -07:00
parent 4cc4e8133e
commit f8bae13e1c
2 changed files with 52 additions and 8 deletions

View file

@ -28,51 +28,59 @@ define([
name: 'status',
label: '',
editable: false,
cell: 'seriesStatus'
cell: 'seriesStatus',
headerCell: 'nzbDrone'
},
{
name: 'title',
label: 'Title',
editable: false,
cell: 'string'
cell: 'string',
headerCell: 'nzbDrone'
},
{
name: 'seasonCount',
label: 'Seasons',
editable: false,
cell: 'integer'
cell: 'integer',
headerCell: 'nzbDrone'
},
{
name: 'quality',
label: 'Quality',
editable: false,
cell: 'integer'
cell: 'integer',
headerCell: 'nzbDrone'
},
{
name: 'network',
label: 'Network',
editable: false,
cell: 'string'
cell: 'string',
headerCell: 'nzbDrone'
},
{
name: 'nextAiring',
label: 'Next Airing',
editable: false,
cell: 'airDate'
cell: 'airDate',
headerCell: 'nzbDrone'
},
{
name: 'episodes',
label: 'Episodes',
editable: false,
sortable: false,
cell: 'episodeProgress'
cell: 'episodeProgress',
headerCell: 'nzbDrone'
},
{
name: 'edit',
label: '',
editable: false,
sortable: false,
cell: 'controlsColumn'
cell: 'controlsColumn',
headerCell: 'nzbDrone'
}
];