SMART datagrid v.1 > Classes > GridExportOptions

Back  Forward

DataLudi.GridExportOptions.url  property

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.

Getter
function url(): String
Setter
function setUrl(value: String)
Code -1
    $('#export').click(function () {
        DataLudi.exportToExcel(grdMain, {
            target: "remote",
            url:  "/envelope",
            fileName: "dlgrid.xlsx"
        });
    });
See Also
target
fileName
GridExcelExporter
exportToExcel
Examples
Excel Exporting