SMART datagrid v.1 > Classes > GridExportOptions

[ grids ver.1.3.5]   Back  Forward

DataLudi.GridExportOptions.modal  property

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.

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
Async Excel Exporting