SMART datagrid v.1 > Classes > GridExportOptions
If it is true, when proceeding Asynchronous exporting, it will automatically display Progress Bar.
You can specify this property as false and display self progress indication or call GridBase.showProgress within onStart, onProgress, onFinished callbacks which are called when running exporting to directly display the progress bar. You can specify the title of progress bar by title property.
Defaults to true.
$('#export').click(function () {
new DataLudi.exportToExcel(grdMain, {
target: "local",
fileName: "dlgrid.xlsx",
async: true,
showProgress: true,
title: 'Excel exporting...'
});
});