exports data to an Excel file
url | string | the url of a data export service |
dtable.exportToExcel();
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