SMART datagrid v1.4 > Classes > GridExportOptions
async와 showProgress가 true인 내보내기 실행 중 표시되는 진행바의 타이틀로 표시되는 문자열.
이 속성을 진행하지 않거나 null이면 locale 기본값으로 표시된다. 빈 문자열로 지정하면 타이틀이 표시되지 않는다.
기본값은 null.
$('#export').click(function () {
new DataLudi.exportToExcel(grdMain, {
target: "local",
fileName: "dlgrid.xlsx",
async: true,
showProgress: true,
title: '엑셀 내보내기 중...'
});
});