www/js/inv_waters.js

changeset 563
acdd54144838
parent 528
202272a28052
child 662
4bb005694ce7
--- a/www/js/inv_waters.js	Thu Dec 05 13:25:54 2019 +0100
+++ b/www/js/inv_waters.js	Thu Dec 05 22:47:40 2019 +0100
@@ -165,9 +165,13 @@
    var addButton, container = $('<div style="overflow: hidden; position: relative; margin: 5px;"></div>');
    addButton = $('<div style="float: right; margin-right: 15px;"><img style="position: relative; margin-top: 2px;" ' +
      'src="images/add.png"/><span style="margin-left: 4px; position: relative; top: -3px;">Nieuw</span></div>');
+   expButton = $('<div style="float: right; margin-right: 50px;"><img style="position: relative; margin-top: 2px;" ' +
+     'src="images/database.png"/><span style="margin-left: 4px; position: relative; top: -3px;">Export</span></div>');
    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;
@@ -187,6 +191,9 @@
     $('#cost').val(0);
     $('#popupWindow').jqxWindow('open');
    });
+   expButton.click(function(event) {
+    window.open('export_waters.php');
+   });
   },
   filterable: false,
   columns: [

mercurial