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

RadScheduler, Footer with columns

3 Answers 86 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Romain
Top achievements
Rank 1
Romain asked on 25 Apr 2014, 06:55 AM
Hi,
I am working on a TimeLineView RadScheduler witch have already one resource grouping.
What I want to do is add a footer table or a row to the RadScheduler witch is aligned to the Scheduler (same number of cells as the number of timeslots).
What I began to do is create a table dynamically but, I was wondering if I can do the same thing with another RessourceType or with a native functionality of the RadScheduler.
You can see a screenshot of my Scheduler at me moment.

Thanks and excuse me for my bad english
Romain

3 Answers, 1 is accepted

Sort by
0
Ivan Zhekov
Telerik team
answered on 28 Apr 2014, 06:42 PM
Hi, Romani.

What you have described as a scenario is currently not possible with the built in functionality of RadScheduler: neither with a footer row / template nor with a special resource row.

You will have to go with the dynamically created table below RadScheduler.

Regards,
Ivan Zhekov
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Romain
Top achievements
Rank 1
answered on 23 Jul 2015, 01:27 PM

Hi,

I need to export in PDF my TimeLineView RadScheduler with my footer, is it still impossible to add custom footer or ​add HTML during the export ?

 

Thanks,

Romain

 

0
Ivan Zhekov
Telerik team
answered on 28 Jul 2015, 12:22 PM
Hello, Romain.

With the ClientExportManager (http://demos.telerik.com/aspnet-ajax/client-export-manager/overview/defaultcs.aspx) you could.

What you need to do is to put RadScheduler and the desired custom footer in a common container and then export that element.

It could be as easy as the following:

<div>
    <span id="btn-export">Export pdf</span>
</div>
 
 
<hr />
 
 
<div id="export-container">
    <div>SCHEDULER GOES HERE</div>
    <div>FOOTER GOES HERE </div>
</div>
 
 
<telerik:RadClientExportManager runat="server" ID="exportManager" />
 
 
<script type="text/javascript">
Sys.Application.add_load(function() {
 
    var $ = $telerik.$;
    var manager = $find( "<%= exportManager.ClientID %>" );
 
    $("#btn-export").click(function() {
        manager.exportPDF( "#export-container" );
    });
});
</script>


(assuming you already have a script manager on the page)

Regards,
Ivan Zhekov
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
Tags
Scheduler
Asked by
Romain
Top achievements
Rank 1
Answers by
Ivan Zhekov
Telerik team
Romain
Top achievements
Rank 1
Share this question
or