This is a migrated thread and some comments may be shown as answers.

How to Print Appointments in Scheduler

2 Answers 169 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Akhtar
Top achievements
Rank 1
Akhtar asked on 16 Feb 2016, 10:15 AM

Hi

I am currently working on Scheduler, i want that scheduler give me option to print the appointments of current day shown in scheduler. How is it possible?

Thanks in advance

Best Regards

Akhtar Abbas

2 Answers, 1 is accepted

Sort by
0
Nencho
Telerik team
answered on 19 Feb 2016, 09:23 AM
Hello Akhtar,

The RadScheduler does not provide an inbuilt print , however, you can use the RadClientExportManager. The manager exports the current visualization of the referenced control, and then prompts the exported PDF. Once opened you can print the PDF. 

Please consider the below implementation for a button click:
functionality
<telerik:RadButton runat="server" ID="btnExpor" OnClientClicked="OnClientClicked" AutoPostBack="false"></telerik:RadButton>
      <script type="text/javascript">
          var $ = $telerik.$;
          function OnClientClicked() {
              $find('<%=RadClientExportManager1.ClientID%>').exportPDF($(".RadScheduler"));
          }
      </script>

In addition, please refer to the online demos of the RadClientExportManager, providing more information on its usage and behavior.:

http://demos.telerik.com/aspnet-ajax/client-export-manager/overview/defaultcs.aspx

Regards,
Nencho
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Paul
Top achievements
Rank 1
answered on 04 Jul 2017, 10:52 PM

I am able to export to the Telerik Schedule to PDF on Azure using Client Export manager, but only the visible parts on the screen without scrolling.

        function exportScheduler(sender, args) {
            scheduler = $find("RadScheduler1");
            $find('<%=RadClientExportManager1.ClientID%>').exportPDF($telerik.$(".RadScheduler"));
        }

How do we force the export to PDF of all parts of the schedule?

Tags
Scheduler
Asked by
Akhtar
Top achievements
Rank 1
Answers by
Nencho
Telerik team
Paul
Top achievements
Rank 1
Share this question
or