SMART datagrid v.1 > Classes > GridExportOptions
如果为true,就会在显示进度条时,显示覆盖网格的掩码,并且用户将无法用鼠标点击网格。
默认值为false.
$('#export').click(function () {
new DataLudi.exportToExcel(grdMain, {
target: "local",
fileName: "dlgrid.xlsx",
async: true,
showProgress: true,
modal: true
});
});