From a2a14011c8c62b8874a1f3a19ae37759e3a61cbb Mon Sep 17 00:00:00 2001
From: Carlos Vega <carlos.vega@.uni.lu>
Date: Thu, 27 Sep 2018 16:15:43 +0200
Subject: [PATCH] added scroll for long subject tables. keep the column filters
 at the top

---
 smash/web/static/js/smash.js            | 1 -
 smash/web/templates/subjects/index.html | 5 +++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/smash/web/static/js/smash.js b/smash/web/static/js/smash.js
index a82e85df..c41cb5cd 100644
--- a/smash/web/static/js/smash.js
+++ b/smash/web/static/js/smash.js
@@ -365,7 +365,6 @@ function createTable(params) {
             columns: columns,
             columnDefs: columnDefs,
             order: [[0, 'desc']],
-            scrollX: true,
             dom: dom_settings //see docs: https://datatables.net/reference/option/dom
         });
 
diff --git a/smash/web/templates/subjects/index.html b/smash/web/templates/subjects/index.html
index c6298a85..ade99030 100644
--- a/smash/web/templates/subjects/index.html
+++ b/smash/web/templates/subjects/index.html
@@ -4,6 +4,11 @@
 {% block styles %}
     {{ block.super }}
     <link rel="stylesheet" href="{% static 'AdminLTE/plugins/datatables/dataTables.bootstrap.css' %}">
+    <style type="text/css">
+        .box-body {
+            overflow-x: scroll;
+        }
+    </style>
 
 {% endblock styles %}
 
-- 
GitLab