Documentation

exportToPDF

exports data to a PDF file

void exportToPDF( [string url] );

Parameters

urlstringthe url of a data export service

See also

Example

dtable.exportToPDF();

Details

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

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