SMART datagrid v1.4 > Classes > GridExportOptions

[ grids ver.1.4.5]   Back  Forward

DataLudi.GridExportOptions.pagingAllItems  property

true이면 엑셀출력시 페이징을 사용하는 경우 화면상에 보이지 않는 데이터도 함께 내보기할수있다. 

기본값은 false.

Getter
function pagingAllItems(): Boolean
Setter
function setPagingAllItems(value: Boolean)
Code -1
    $('#export').click(function () {
        new DataLudi.exportToExcel(grid, { 
            ...
            pagingAllItems: true
        }); 
    });
See Also
GridExcelExporter.export
exportToExcel
Examples
엑셀로 내보내기