SMART datagrid v1.4 > 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: '엑셀 내보내기 중...'
        });
    });
See Also
async
onStart
onProgress
onFinished
GridExcelExporter
exportToExcel
Examples
Async Excel Exporting