SMART datagrid v.1 > Classes > GridExportOptions
Grid Row Indicator cell exporting setting. You can specify as one of below three values.
Value | Explanation |
---|---|
"default" | Follow the setting of Grid Row Indicator. Export as the value set in RowIndicator.displayValue. |
"rowIndex" | Export to grid row number. |
"dataIndex" | Export to data index of grid row. |
Defaults to "default".
$('#export').click(function () {
DataLudi.exportToExcel(grdMain, {
taregt: "local",
fileName: "dlgrid.xlsx",
indicatorValue: "rowIndex"
});
});