Currently when we click on specific cell in a report, cell gets highlighted with its borders. When there is a report with large number of columns, it becomes difficult to trace the specific row when we scroll horizontally.
I have written the code to highlight the complete row when clicked on specific cell. For my custom reports I am adding this code in report’s javascript file. But I want to make it a global solution, so that it gets applied automatically to all existing and future reports.
To make it global solution, I added custom js code in apps/custom_app/custom_app/public/js/custom_file.js.
I hooked this file in hooks.py using app_include_js = “/assets/custom_app/js/custom_file.js”
But this is not working.
Do anyone have idea how can we make it a global solution.
(If my custom code which I am using to highlight the rows in my custom reports is required, I will share it, so that community can use it if they have same requirement).