aboutsummaryrefslogtreecommitdiffstats
path: root/server/templates/server/doc_list_table.html
diff options
context:
space:
mode:
Diffstat (limited to 'server/templates/server/doc_list_table.html')
-rw-r--r--server/templates/server/doc_list_table.html17
1 files changed, 0 insertions, 17 deletions
diff --git a/server/templates/server/doc_list_table.html b/server/templates/server/doc_list_table.html
index 9f9ed2a..0096380 100644
--- a/server/templates/server/doc_list_table.html
+++ b/server/templates/server/doc_list_table.html
@@ -120,16 +120,6 @@
}
}
- $(".tabulator-group").each(function() {
- for (var i = 0; i < this.childNodes.length; i++) {
- if (this.childNodes[i].nodeType === 3) {
- this.appendChild(elemsMapping[this.childNodes[i].textContent]);
- elemsMapping[this.childNodes[i].textContent].style = "background-color: #ccc; margin-left: -10px;";
- elemsMapping[this.childNodes[i].textContent].classList.add("embedded-row");
- }
- }
- })
-
$(".tabulator-col-resize-handle").css("margin-left", "-3px");
});
@@ -258,13 +248,6 @@
}
}
- for (var key in docTypes) {
- tabledata.push({
- type: key,
- username: "col_row",
- });
- }
-
var col_select = document.getElementById("column-select");
for (var j = 0; j < col_categories.length; j++) {
col_select.innerHTML += '<div class="input-field col s12"><label><input onclick="check_all(\''+col_categories[j].field+'\')" id="category_'+col_categories[j].field+'" type="checkbox" class="filled-in"/><span style="color:black"><b>'+col_categories[j].name+'</b></span></label></div>';