From 7c2cddc906be63200cda6051c54e39b69da4a979 Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Mon, 30 Oct 2017 13:16:25 +0100
Subject: [PATCH] order of columns changed (so edit is always visible)

---
 smash/web/static/js/subject.js | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/smash/web/static/js/subject.js b/smash/web/static/js/subject.js
index caa51b2a..8453f7e9 100644
--- a/smash/web/static/js/subject.js
+++ b/smash/web/static/js/subject.js
@@ -15,6 +15,7 @@ function createColumn(dataType, name, filter, visible, renderFunction) {
 
 function getColumns(type) {
     var result = [];
+    result.push(createColumn("id", "Id", null, false));
     result.push(createColumn("nd_number", "ND", "string_filter", true));
     result.push(createColumn("screening_number", "Screening", "string_filter", true));
     result.push(createColumn("first_name", "First name", "string_filter", true));
@@ -26,7 +27,9 @@ function getColumns(type) {
     result.push(createColumn("postponed", "Postponed", "yes_no_filter", true));
     result.push(createColumn("information_sent", "Info sent", "yes_no_filter", true));
     result.push(createColumn("type", "Type", "type_filter", true));
-    result.push(createColumn("id", "Id", null, false));
+    result.push(createColumn("id", "Edit", null, true, function (data, type, row, meta) {
+        return '<a href="#" type="button" class="btn btn-block btn-default">Edit</a>';
+    }));
     for (var i = 1; i <= 8; i++) {
         var renderFunction = (function () {
             var x = i;
@@ -38,9 +41,6 @@ function getColumns(type) {
         result.push(createColumn("visit_" + i, "Visit " + i, "visit_filter", true, renderFunction));
 
     }
-    result.push(createColumn("id", "Edit", null, true, function (data, type, row, meta) {
-        return '<a href="#" type="button" class="btn btn-block btn-default">Edit</a>';
-    }));
     return result;
 
 }
-- 
GitLab