diff -r ee28b3303da2 -r acdd54144838 www/js/profile_mash.js --- a/www/js/profile_mash.js Thu Dec 05 13:25:54 2019 +0100 +++ b/www/js/profile_mash.js Thu Dec 05 22:47:40 2019 +0100 @@ -250,9 +250,13 @@ var addButton, container = $('
'); addButton = $('
Add
'); + expButton = $('
Export
'); container.append(addButton); + container.append(expButton); statusbar.append(container); addButton.jqxButton({ theme: theme, width: 90, height: 20 }); + expButton.jqxButton({ theme: theme, width: 90, height: 20 }); // add new row. addButton.click(function(event) { editrow = -1; @@ -261,6 +265,9 @@ editsteps(''); $('#popupWindow').jqxWindow('open'); }); + expButton.click(function(event) { + window.open('export_mashs.php'); + }); }, filterable: true, filtermode: 'excel',