SMART datagrid v.1 > Classes > GridExportOptions

[ grids ver.1.3.5]   Back  Forward

DataLudi.GridExportOptions.modal  property

如果为true,就会在显示进度条时,显示覆盖网格的掩码,并且用户将无法用鼠标点击网格。 

默认值为false.

Getter
function modal(): Boolean
Setter
function setModal(value: Boolean)
Code -1
    $('#export').click(function () {
        new DataLudi.exportToExcel(grdMain, {
            target: "local",
            fileName: "dlgrid.xlsx",
            async: true,
            showProgress: true,
            modal: true
        });
    });
See Also
showProgress
async
GridExcelExporter.export
exportToExcel
Examples
Excel异步导出