
I know currently you can currently programmatically call export functions etc.
I was wondering if in future versions you were going to allow a developer to programatically modify the functions available within the built in reporting toolbar.
Regards,
Graham O'Riley
Netdocs Plc
5 Answers, 1 is accepted
Can you elaborate on your request? What is it exactly what you are trying to achieve and are you using the web or win report viewer?
Kind regards,
Steve
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

I am using the web report viewer.
The toolbar allows a report to be exported.
I was wondering if I can change the export options to only pdf.
Regards,
Graham O'Riley
Netdocs Plc
You can achieve that through the rendering extensions we've introduced - more info available here.
For your scenario in order to allow only pdf as export option, you would have to hide all the others:
<Telerik.Reporting>
<Extensions>
<Render>
<Extension name="IMAGE" visible="false"></Extension>
<Extension name="HTML" visible="false"></Extension>
<Extension name="MHTML" visible="false"></Extension>
<Extension name="XLS" visible="false"></Extension>
<Extension name="CSV" visible="false"></Extension>
<Extension name="PDF" visible="true"></Extension>
</Render>
</Extensions>
</Telerik.Reporting>
Hope this helps.
Best wishes,
Steve
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

That looks good.
I've added the xml to my web.config but it will not debug (start) therefore
I assume I have placed the xml in the wrong section.
It current is:
<
configSections>
<
Telerik.Reporting>
<Extensions>
<Render>
<Extension name="IMAGE" visible="false"></Extension>
<Extension name="HTML" visible="false"></Extension>
<Extension name="MHTML" visible="false"></Extension>
<Extension name="XLS" visible="false"></Extension>
<Extension name="CSV" visible="false"></Extension>
<Extension name="PDF" visible="true"></Extension>
</Render>
</Extensions>
</Telerik.Reporting>
</configSections>
<system.web>
also tried:
<
configSections>
<
section name="Telerik.Reporting" type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting.Processing, Version=2.8.8.723, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" allowLocation="true" allowDefinition="Everywhere"/>
<
Telerik.Reporting>
<
Extensions>
<
Render>
<
Extension name="IMAGE" visible="false"></Extension>
<
Extension name="HTML" visible="false"></Extension>
<
Extension name="MHTML" visible="false"></Extension>
<
Extension name="XLS" visible="false"></Extension>
<
Extension name="CSV" visible="false"></Extension>
<
Extension name="PDF" visible="true"></Extension>
</
Render>
</
Extensions>
</
Telerik.Reporting>
</
configSections>
<
system.web>
Thanks for the help.

<
configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<
configSections>
<
section name="Telerik.Reporting" type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting.Processing, Version=2.8.8.723, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"
allowLocation="true" allowDefinition="Everywhere"/>
</
configSections>
<
Telerik.Reporting>
<
Extensions>
<
Render>
<
Extension name="IMAGE" visible="false"></Extension>
<
Extension name="HTML" visible="false"></Extension>
<
Extension name="MHTML" visible="false"></Extension>
<
Extension name="XLS" visible="false"></Extension>
<
Extension name="CSV" visible="false"></Extension>
<
Extension name="PDF" visible="true"></Extension>
</
Render>
</
Extensions>
</
Telerik.Reporting>
<
system.web>
....
Many thanks Steve for the help.