Exporting is one of the new features in WebScheduler.NET. WebScheduler’s export
supports scheduler exporting to PDF and iCal.
In this topic, you will learn how to perform exporting from client-side.
To export from client-side
- Bind WebScheduler
to Access database.
- Simply use ExportScheduler method from client-side. ExportScheduler
requires two parameters (report type and page orientation). The code will look like
following:
function Button1_onclick()
{
//retrieve WebsScheduler object
var s = ISGetObject("ws1");
s.ExportScheduler("PDF", "Landscape"); // export scheduler to PDF
}
|