SMART datagrid v.1 > Classes > GridExportOptions

[ grids ver.1.3.5]   Back  Forward

DataLudi.GridExportOptions.title  property

The string which is displayed as the title of progress bar displayed when running exporting of which async and showProgress are true

If do not proceed this property or it is null, it will be displayed as locale default value. If specify as an empty string, the title will not be displayed. 

Defaults to null.

Getter
function title(): String
Setter
function setTitle(value: String)
Code -1
    $('#export').click(function () {
        new DataLudi.exportToExcel(grdMain, {
            target: "local",
            fileName: "dlgrid.xlsx",
            async: true,
            showProgress: true,
            title: 'Excel exporting...'
        });
    });
See Also
async
onStart
onProgress
onFinished
GridExcelExporter
exportToExcel
Examples
Async Excel Exporting