(table)
| 10 | static downloaders = defaultDownloaders; |
| 11 | |
| 12 | constructor(table){ |
| 13 | super(table); |
| 14 | |
| 15 | this.registerTableOption("downloadEncoder", function(data, mimeType){ |
| 16 | return new Blob([data],{type:mimeType}); |
| 17 | }); //function to manipulate download data |
| 18 | this.registerTableOption("downloadConfig", {}); //download config |
| 19 | this.registerTableOption("downloadRowRange", "active"); //restrict download to active rows only |
| 20 | |
| 21 | this.registerColumnOption("download"); |
| 22 | this.registerColumnOption("titleDownload"); |
| 23 | } |
| 24 | |
| 25 | initialize(){ |
| 26 | this.deprecatedOptionsCheck(); |
nothing calls this directly
no test coverage detected