SMART datagrid v.1 > Classes > GridExportOptions
Grid Row Indicator exporting setting. You can specify as one of below three values.
Value | Explanation |
---|---|
"default" | Follow the setting of grid. If Row Indicator has been displayed in grid, it will run exporting. |
"hidden" | Do not export grid Row Indicator. |
"visible" | Even if it has not been displayed in grid, it will be added to grid Row Indicator exporting. |
Defaults to "default".
$('#export').click(function () {
DataLudi.exportToExcel(grdMain, {
taregt: "local",
fileName: "dlgrid.xlsx",
rowIndicator: "visible"
});
});