diff -r ee28b3303da2 -r acdd54144838 www/js/inv_equipments.js --- a/www/js/inv_equipments.js Thu Dec 05 13:25:54 2019 +0100 +++ b/www/js/inv_equipments.js Thu Dec 05 22:47:40 2019 +0100 @@ -226,9 +226,13 @@ var addButton, container = $('
'); addButton = $('
Nieuw
'); + 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; @@ -259,6 +263,9 @@ $('#efficiency').val(75); $('#popupWindow').jqxWindow('open'); }); + expButton.click(function(event) { + window.open('export_equipments.php'); + }); }, filterable: false, ready: function() {