Completed
Last Updated: 08 Jul 2026 13:45 by ADMIN
Release 2026 Q2 (20.1.26.707)
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").addClass("k-hidden");
                    },

 

0 comments