SMART datagrid v.1 > Classes > GridExportOptions

Back  Forward

DataLudi.GridExportOptions.url  property

target"remote"の場合サーバー側にBase64ストリームを受けてfileNameで指定したファイル名のExcelドキュメントで送るurl. 

デフォルト値は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
GridCxcelExporter
exportToExcel
Examples
エクセルでエクスポート