SMART datagrid v.1 > Classes > GridExportOptions
If it is true, when displaying progress bar, the mask of covering grid will be displayed, and the user will not be able to click the grid with mouse.
Defaults to false.
$('#export').click(function () {
new DataLudi.exportToExcel(grdMain, {
target: "local",
fileName: "dlgrid.xlsx",
async: true,
showProgress: true,
modal: true
});
});