diff --git a/dashboard-ui/scripts/tvshows.js b/dashboard-ui/scripts/tvshows.js
index 166fc1103b..ae9864e376 100644
--- a/dashboard-ui/scripts/tvshows.js
+++ b/dashboard-ui/scripts/tvshows.js
@@ -174,6 +174,14 @@
reloadItems(page);
});
+ $('#chkSpecialFeature', this).on('change', function () {
+
+ query.StartIndex = 0;
+ query.HasSpecialFeature = this.checked ? true : null;
+
+ reloadItems(page);
+ });
+
$('#chkThemeVideo', this).on('change', function () {
query.StartIndex = 0;
@@ -255,6 +263,7 @@
$('#chkTrailer', this).checked(query.HasTrailer == true).checkboxradio('refresh');
$('#chkThemeSong', this).checked(query.HasThemeSong == true).checkboxradio('refresh');
$('#chkThemeVideo', this).checked(query.HasThemeVideo == true).checkboxradio('refresh');
+ $('#chkSpecialFeature', this).checked(query.HasSpecialFeature == true).checkboxradio('refresh');
$('.alphabetPicker', this).alphaValue(query.NameStartsWith);
});
diff --git a/dashboard-ui/tvshows.html b/dashboard-ui/tvshows.html
index 5a460d4e37..9455e7f753 100644
--- a/dashboard-ui/tvshows.html
+++ b/dashboard-ui/tvshows.html
@@ -128,6 +128,9 @@
+
+
+