SMART datagrid v.1 > Classes > GridExportOptions
The url which gets Base64 stream from the server and transfers to Excel document of which file name is specified by fileName when target is "remote".
Defaults to undefined.
$('#export').click(function () {
DataLudi.exportToExcel(grdMain, {
target: "remote",
url: "/envelope",
fileName: "dlgrid.xlsx"
});
});