SMART datagrid v1.4 > 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
Async Excel Exporting