From 46eb5dc7fa02cb788050306548a7e905e0523b82 Mon Sep 17 00:00:00 2001 From: AjmalCybro Date: Wed, 8 Feb 2023 11:03:03 +0530 Subject: [PATCH] Feb 7 [UPDT] : Bug Fixed 'custom_list_view' --- custom_list_view/__manifest__.py | 2 +- custom_list_view/static/src/js/serial_no.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/custom_list_view/__manifest__.py b/custom_list_view/__manifest__.py index bf11ebac6..45d55595a 100644 --- a/custom_list_view/__manifest__.py +++ b/custom_list_view/__manifest__.py @@ -22,7 +22,7 @@ { 'name': 'Custom List View', - 'version': '15.0.1.0.0', + 'version': '15.0.1.0.1', 'summary': 'Helps to Show Row Number, Fixed Header, Duplicate Record and Highlight Selected Record in List View', 'description': 'Helps to Show Row Number, Fixed Header, Duplicate Record and Highlight Selected Record in List View', 'category': 'Tools', diff --git a/custom_list_view/static/src/js/serial_no.js b/custom_list_view/static/src/js/serial_no.js index 8e93352f4..adb5f47b3 100644 --- a/custom_list_view/static/src/js/serial_no.js +++ b/custom_list_view/static/src/js/serial_no.js @@ -13,10 +13,11 @@ ListRenderer.include({ return columns; }, - _renderFooter: function () { const $footer = this._super.apply(this, arguments); + if(this.hasSelectors){ $footer.find('tr').prepend($('')); + } return $footer; }, @@ -35,5 +36,6 @@ ListRenderer.include({ } return $rows; }, + }); }); \ No newline at end of file