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