SMART datagrid v1.4 > Classes > GridExportOptions
그리드 Row Indicator 내보내기 설정. 아래의 세 가지 값들 중 하나로 지정한다.
값 | 설명 |
---|---|
"default" | 그리드의 설정을 따른다. 그리드에 Row Indicator가 표시된 상태면 내보내기 한다. |
"hidden" | 그리드 Row Indicator를 내보내지 않는다. |
"visible" | 그리드에 표시되지 않은 상태라도 그리드 Row Indicator를 내보내기에 추가한다. |
기본값은 "default".
$('#export').click(function () {
DataLudi.exportToExcel(grdMain, {
taregt: "local",
fileName: "dlgrid.xlsx",
rowIndicator: "visible"
});
});