Documentation

exportToExcel

exports data to an Excel file

void exportToExcel( [string url] );

Parameters

urlstringthe url of a data export service

See also

Example

dtable.exportToExcel();

Details

You can write your own solution. There are server side support for PHP, JAVA, .NET (check here ). In this case, export will look like:

dtable.exportToExcel("http://your-site.com/path/generate.php");
Back to top