diff --git a/marlo-web/src/main/webapp/WEB-INF/crp/views/projects/projectInnovationList.ftl b/marlo-web/src/main/webapp/WEB-INF/crp/views/projects/projectInnovationList.ftl
index 2be51e2c27..9415352789 100644
--- a/marlo-web/src/main/webapp/WEB-INF/crp/views/projects/projectInnovationList.ftl
+++ b/marlo-web/src/main/webapp/WEB-INF/crp/views/projects/projectInnovationList.ftl
@@ -4,10 +4,13 @@
[#assign pageLibs = [ "datatables.net", "datatables.net-bs"] /]
[#assign customJS = [
"${baseUrlMedia}/js/projects/projectInnovationsList.js?20241218",
- "${baseUrlCdn}/global/js/autoSave.js",
+ [#-- "${baseUrlCdn}/global/js/autoSave.js", --]
"${baseUrlCdn}/global/js/fieldsValidation.js"
] /]
-[#assign customCSS = ["${baseUrlMedia}/css/projects/projectInnovations.css?20240517"] /]
+[#assign customCSS = [
+ "${baseUrlCdn}/global/css/customDataTable.css",
+ "${baseUrlMedia}/css/projects/projectInnovations.css?20240517"
+ ] /]
[#assign currentSection = "projects" /]
[#assign currentStage = "innovations" /]
[#assign isListSection = true /]
@@ -36,32 +39,33 @@
[#-- Section Messages --]
[#include "/WEB-INF/crp/views/projects/messages-projects.ftl" /]
- [#-- Innovations List --]
-
[@s.text name="projectInnovations" /]
-
-
- [@innovationsTableMacro list=(projectInnovations)![] /]
-
-
- [#-- Add Innovation Button --]
- [#if canEdit]
-
@@ -78,20 +82,20 @@
diff --git a/marlo-web/src/main/webapp/crp/css/projects/projectInnovations.css b/marlo-web/src/main/webapp/crp/css/projects/projectInnovations.css
index 2000ef5844..be6fe32858 100644
--- a/marlo-web/src/main/webapp/crp/css/projects/projectInnovations.css
+++ b/marlo-web/src/main/webapp/crp/css/projects/projectInnovations.css
@@ -133,13 +133,11 @@ table ul {
/** MARLO Responsibe Tables */
.table-responsive table {
- min-width: 1500px;
margin-bottom: 0;
}
.table-responsive {
border: 1px solid #ddd;
- max-height: 500px;
}
.table > thead > tr > th {
diff --git a/marlo-web/src/main/webapp/crp/js/projects/projectInnovationsList.js b/marlo-web/src/main/webapp/crp/js/projects/projectInnovationsList.js
index e1d233b131..f1b49810ad 100644
--- a/marlo-web/src/main/webapp/crp/js/projects/projectInnovationsList.js
+++ b/marlo-web/src/main/webapp/crp/js/projects/projectInnovationsList.js
@@ -5,8 +5,7 @@ $(document).ready(function() {
// Add click event to tsURL links
$('a[href*="/projects"]').on('click', function() {
- const table = $(this).closest('#table-innovations_wrapper');
- const loadingElement = table.siblings('.loading');
+ const loadingElement = $('.container_page_load');
loadingElement.show();
});
});