[starting from version: 2.3]
It is triggered when the export of a grid or chart starts. Export is possible to CSV, HTML, PDF, Image, or Excel format. Use exportTo(type:String, params:Object, callbackHandler: Function)
for more export options. To make sure that the export process was successful and the file is ready to be saved, use exportcomplete
.
flexmonster.on('exportstart', function () {
alert('Exporting started!');
});
Try the example on JSFiddle.