SMART datagrid v.1 > Classes > GridExportOptions
The string which is displayed as the title of progress bar displayed when running exporting of which async and showProgress are true.
If do not proceed this property or it is null, it will be displayed as locale default value. If specify as an empty string, the title will not be displayed.
Defaults to null.
$('#export').click(function () {
new DataLudi.exportToExcel(grdMain, {
target: "local",
fileName: "dlgrid.xlsx",
async: true,
showProgress: true,
title: 'Excel exporting...'
});
});