This repository has been archived on 2022-07-12. You can view files and clone it, but cannot push or open issues or pull requests.
opencase/modules/opencase_reporting/js/opencase-reporting.js

6 lines
202 B
JavaScript
Raw Normal View History

jQuery('body').on('click','#opencase_reporting_buttons #download_data',function(){
var url = new URL(location.href);
url.searchParams.append('_format', 'csv');
location.href = url.toString();
});