SMART datagrid v.1 > Classes > GridExportOptions

[ grids ver.1.3.5]   Back  Forward

DataLudi.GridExportOptions.title  property

被显示为asyncshowProgresstrue的导出运行中的进度条标题的字符串。 

如果没有进行这个属性或为null,就会被显示为locale默认值。 如果指定为空字符串,就不会显示标题。 

默认值为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导出中...'
        });
    });
See Also
async
onStart
onProgress
onFinished
GridExcelExporter
exportToExcel
Examples
Excel异步导出