We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e329854 + 5a891b2 commit 0fa4d2dCopy full SHA for 0fa4d2d
Griddly/Scripts/griddly.js
@@ -448,6 +448,10 @@
448
this.clearSelected();
449
}, this));
450
451
+ $("a.export-custom", this.$element).on("click", $.proxy(function (e) {
452
+ this.exportFile("custom", null, { exportName: $(e.target).data("export-name") });
453
+ e.preventDefault();
454
+ }, this));
455
$("a.export-xlsx", this.$element).on("click", $.proxy(function (e) {
456
this.exportFile("xlsx", null, { exportName: $(e.target).data("export-name") });
457
e.preventDefault();
0 commit comments