SMART datagrid v1.4 > Classes > GridExportOptions

Back  Forward

DataLudi.GridExportOptions.url  property

target"remote" 인 경우 서버 쪽에 Base64 스트림을 받아서 fileName으로 지정한 파일명의 Excel 문서로 보내주는 url. 

기본값은 undefined.

Getter
function url(): String
Setter
function setUrl(value: String)
Code -1
    $('#export').click(function () {
        DataLudi.exportToExcel(grdMain, {
            target: "remote",
            url:  "/envelope",
            fileName: "dlgrid.xlsx"
        });
    });
See Also
target
fileName
GridExcelExporter
exportToExcel
Examples
엑셀로 내보내기