Intersoft Support Center

Configure Export in Client-Side

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

  1. Bind WebScheduler to Access database.
  2. Simply use ExportScheduler method from client-side. ExportScheduler requires two parameters (report type and page orientation). The code will look like following:
    JavaScript Copy Code
    function Button1_onclick()
    {            
       //retrieve WebsScheduler object     
       var s = ISGetObject("ws1");      
       s.ExportScheduler("PDF", "Landscape");   // export scheduler to PDF
    }
Previous Next