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.
1 parent bd11362 commit 5a891b2Copy full SHA for 5a891b2
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