내보내기와 관련된 설정 정보를 GridExportOptions 객체에 설정하고 export 메쏘드를 호출해서, 그리드를 Microsoft Excel(.xlsx) 문서로 내보내기 한다.
$('#export').click(function () {
new DataLudi.GridExcelExporter().export(grdMain, {
target: "remote",
url: "/envelope",
fileName: "dlgrid.xlsx"
});
});