Reputation: 525
Has anyone used this extension (https://github.com/stefanwalther/sense-export)? It is an export button from GitHub.
It's pretty good, but I have not been able to have a specific filename. The default name is a unique identifier and I need to generate the excel file with a specific name to use it within another tool automatically.
Upvotes: 0
Views: 2912
Reputation: 1292
Since it is an extension, you can change / customize the JavaScript to do whatever you want. In your case, in swr-sense-export.js, lines 48 through 53 are:
var exportOpts = {
format: $scope.layout.props.exportFormat,
state: $scope.layout.props.exportState,
filename: $scope.layout.props.exportFileName,
download: true
};
So you could change the filename to whatever you want.
Upvotes: 0
Reputation: 936
A better place to ask these questions is on the github repository itself, Stefan who created the extension is very active in the Qlik community and I'm sure would be able to provide more detail - unfortunately the extensions by nature are not mainstream and you will not be able to get as much support for them as standard products.
Upvotes: 0