May I know how to disable download button for the report?
How to disable download button for the report?
(5 posts) (2 voices)-
-
if you want to disable the export functionality for a report, you can do it per report via command:
select 'dbr.export.options', 'disable','pdf,excel,csv,sql';
If you want to disable export on all report, you can override the
$mydbr_defaults['export']['export_choices']
inuser/defaults.php
--
myDBR Team -
Thanks. What about the copy to clipboard icon? Can it be disabled too?
-
You can use:
select 'dbr.search', 0;
which will remove the generic search bar and the copy to clipboard icon.
If you want to remove just the clipboard icon, you can do:
select 'dbr.javascript', '$(".copytocb").remove();', 'onload';
--
myDBR Team -
Thank you
Reply
You must log in to post.