SMART datagrid v1.4 > Classes > GridExportOptions

Back  Forward

DataLudi.GridExportOptions.GridExportOptions  constructor

GridExportOptions 생성자. 

대개 이 클래스 객체를 직접 생성하지 않고, GridExcelExporter.exportexportToExcel의 매개변수로는 설정 객체를 전달한다. 

function GridExportOptions (source: Object);
Returns
Void
Parameters
source - Object. required.
Code -1
    $('#export').click(function () {
        DataLudi.exportToExcel(grdMain, {
            taregt:  "local",
            fileName: "dlgrid.xlsx",
            checkNumber: true
        });
    });
See Also
GridExcelExporter
exportToExcel
Examples
엑셀로 내보내기