SMART datagrid v.1 > Classes > GridExportOptions

Back  Forward

DataLudi.GridExportOptions.rowIndicator  property

Grid Row Indicator exporting setting. You can specify as one of below three values. 

Table-1
ValueExplanation
"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".

Getter
function rowIndicator(): String
Setter
function setRowIndicator(value: String)
Code -1
    $('#export').click(function () {
        DataLudi.exportToExcel(grdMain, {
            taregt:  "local",
            fileName: "dlgrid.xlsx",
            rowIndicator: "visible"
        });
    });
See Also
footer
header
GridExcelExporter
exportToExcel
Examples
Excel Exporting