Hi
I want to print the Month View of the RAD Schedular..The Month view is a
long one.
So when I am trying to print it with window.print(), only the visible page is getting printed but not the whole Sechedular..
Is there any way to print the whole Schedular...
Thanks in Advance
Archan
I want to print the Month View of the RAD Schedular..The Month view is a
long one.
So when I am trying to print it with window.print(), only the visible page is getting printed but not the whole Sechedular..
Is there any way to print the whole Schedular...
Thanks in Advance
Archan
4 Answers, 1 is accepted
0
Hello Archan,
Do you mean that the scheduler content is scrolled and only the visible part is visible? In this case you can add the following style to your page:
You can see a demo of this in this example:
Best wishes,
Tsvetomir Tsonev
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Do you mean that the scheduler content is scrolled and only the visible part is visible? In this case you can add the following style to your page:
<style type="text/css" media="print"> |
div.RadScheduler .rsHeader *, |
div.RadScheduler .rsFooter * |
{ |
display: none; |
} |
div.RadScheduler .rsFooter |
{ |
height: 20px; |
} |
div.RadScheduler .rsHeader h2 |
{ |
display: block; |
padding-left: 10px; |
font-size: 18px; |
} |
div.RadScheduler, |
div.RadScheduler .rsContent |
{ |
height: auto !important; |
} |
</style> |
You can see a demo of this in this example:
http://demos.telerik.com/ASPNET/Prometheus/Scheduler/Examples/Default/DefaultCS.aspx
Best wishes,
Tsvetomir Tsonev
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
illumination
Top achievements
Rank 2
answered on 20 Mar 2009, 08:44 PM
This demo link is unusable anymore. Please provide a new one. I need to be able to print the whole month view. I'm using Q3.1314.
I tried to use the script but it is not working on my application since I already have this script in my masterpage.
Thanks.
I tried to use the script but it is not working on my application since I already have this script in my masterpage.
<style type="text/css"> |
.RadScheduler .rsMonthView .rsWrap, |
.RadScheduler .rsMonthView .rsApt |
{ |
height:auto !important; |
} |
.RadScheduler .rsMonthView .rsApt |
{ |
position:static !important; |
} |
</style> |
Thanks.
0
The css styles to display the entire subject text in month and the styles for printing are not compatible with each other. We will search for a solution and follow up if we find any.
Greetings,
Peter
the Telerik team
Check out Telerik Trainer , the state of the art learning tool for Telerik products.
0
illumination
Top achievements
Rank 2
answered on 24 Mar 2009, 12:19 PM
For now, my solution is stretch the scheduler and print using internet explorer print function. It seems that it works great. The only problem was that it can be few pages if the appointments are long. Thanks for the help Peter!