From 4d65bd6c92eca58a32945e6bcb0d0629f3478a97 Mon Sep 17 00:00:00 2001 From: odiea Date: Thu, 5 Dec 2024 12:29:15 -0700 Subject: [PATCH] Fix sticky header issue in reports (#3854) --- app/Views/reports/tabular.php | 2 -- app/Views/reports/tabular_details.php | 2 -- 2 files changed, 4 deletions(-) diff --git a/app/Views/reports/tabular.php b/app/Views/reports/tabular.php index 83ed73ab3..3a9880686 100644 --- a/app/Views/reports/tabular.php +++ b/app/Views/reports/tabular.php @@ -53,8 +53,6 @@ .bootstrapTable({ columns: , stickyHeader: true, - stickyHeaderOffsetLeft: $('#table').offset().left + 'px', - stickyHeaderOffsetRight: $('#table').offset().right + 'px', pageSize: , sortable: true, showExport: true, diff --git a/app/Views/reports/tabular_details.php b/app/Views/reports/tabular_details.php index 7bd8f8a36..50de02269 100644 --- a/app/Views/reports/tabular_details.php +++ b/app/Views/reports/tabular_details.php @@ -62,8 +62,6 @@ .bootstrapTable({ columns: , stickyHeader: true, - stickyHeaderOffsetLeft: $('#table').offset().left + 'px', - stickyHeaderOffsetRight: $('#table').offset().right + 'px', pageSize: , pagination: true, sortable: true,