www/js/profile_styles.js

changeset 563
acdd54144838
parent 522
35675eadc655
child 701
3ce3df681be0
--- a/www/js/profile_styles.js	Thu Dec 05 13:25:54 2019 +0100
+++ b/www/js/profile_styles.js	Thu Dec 05 22:47:40 2019 +0100
@@ -186,11 +186,15 @@
        'src="images/add.png"/><span style="margin-left: 4px; position: relative; top: -3px;">Nieuw</span></div>');
    impButton = $('<div style="float: right; margin-right: 50px;"><img style="position: relative; margin-top: 2px;" ' +
        'src="images/add.png"/><span style="margin-left: 4px; position: relative; top: -3px;">Import</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(impButton);
+   container.append(expButton);
    statusbar.append(container);
    addButton.jqxButton({ theme: theme, width: 90, height: 20 });
    impButton.jqxButton({ theme: theme, width: 90, height: 20 });
+   expButton.jqxButton({ theme: theme, width: 90, height: 20 });
    // add new row.
    addButton.click(function(event) {
     editrow = -1;
@@ -221,6 +225,9 @@
    impButton.click(function(event) {
     window.location.href = 'import_ingredients.php?select=styles';
    });
+   expButton.click(function(event) {
+    window.open('export_styles.php');
+   });
   },
   filterable: true,
   filtermode: 'excel',

mercurial