diff --git a/list_view_sticky_header/__manifest__.py b/list_view_sticky_header/__manifest__.py index 9d48d4855..7f28b9c8c 100644 --- a/list_view_sticky_header/__manifest__.py +++ b/list_view_sticky_header/__manifest__.py @@ -21,7 +21,7 @@ ############################################################################# { - 'name': 'List View Sticky Header', + 'name': 'Sticky Header in List and Form view', 'version': '16.0.1.0.1', 'summary': 'Helps to Stick The Header of List View', 'description': 'Helps to Stick The Header of List View', diff --git a/list_view_sticky_header/static/description/assets/screenshots/2.png b/list_view_sticky_header/static/description/assets/screenshots/2.png new file mode 100644 index 000000000..0cd2abd08 Binary files /dev/null and b/list_view_sticky_header/static/description/assets/screenshots/2.png differ diff --git a/list_view_sticky_header/static/description/assets/screenshots/3.png b/list_view_sticky_header/static/description/assets/screenshots/3.png new file mode 100644 index 000000000..2a9433a17 Binary files /dev/null and b/list_view_sticky_header/static/description/assets/screenshots/3.png differ diff --git a/list_view_sticky_header/static/description/index.html b/list_view_sticky_header/static/description/index.html index b9c30e6f6..3d6ad7c98 100644 --- a/list_view_sticky_header/static/description/index.html +++ b/list_view_sticky_header/static/description/index.html @@ -21,7 +21,7 @@ -

List View Sticky Header

+

Sticky Header in List and Form view

Helps to Stick The Header of List View

- This module will ensure sticky headers for list view and enhance the user experience so that the user will never lose the headers while scrolling the records. + This module will ensure sticky headers for list and form view,it enhance the user experience so that the user will never lose the headers while scrolling the records.
@@ -120,7 +120,7 @@
- Sticky Header in List Views + Sticky Header in List and Form views
@@ -146,7 +146,15 @@

Sticky Header in List Views

+ + +
+
+

Sticky Header in Form Views

+ + +
diff --git a/list_view_sticky_header/static/src/scss/sticky_header.scss b/list_view_sticky_header/static/src/scss/sticky_header.scss index 3008fa6f9..77f9032e1 100644 --- a/list_view_sticky_header/static/src/scss/sticky_header.scss +++ b/list_view_sticky_header/static/src/scss/sticky_header.scss @@ -9,3 +9,11 @@ .o_list_view .table-responsive .table thead{ z-index: 1; } + +element.style { +} +.o_list_renderer .o_list_table thead { + position: sticky; + top: 0; + z-index:999; +}