Unplanned
Last Updated: 01 Jul 2026 07:26 by Krishnan
Krishnan
Created on: 01 Jul 2026 07:26
Category: Reporting
Type: Bug Report
1
[HTML5 Report Viewer]Export notification does not clear when exporting is manually handled

I use the exportBegin event to prevent the default export logic. However, when I do that, the default viewer notification remains, and I have to hide it manually:

                    exportBegin: function (e, args) {
                        args.handled = true; // Set to true to cancel the default export behavior.
                        //...
                        $(".trv-notification").hide()
                    },

0 comments