SMART datagrid v.1 > Functions
Export to Excel file. It is the same as the code below.
Please refer to GridExcelExporter about more details.
$('#btnSave').click(function () {
DataLudi.exportToExcle(grid, {
target: 'local',
fileName: 'dlgrid.xlsx'
});
});
$('#btnSave').click(function () {
DataLudi.exportToExcle(grid, {
url: '/envelope',
fileName: 'dlgrid.xlsx'
});
});