I'm trying to reduce the export option to PDF & Excel.
I've searched the help and found this broken link -
http://www.telerik.com/help/reporting/configuringtelerikreporting.html
I've found a thread that suggests adding a section to the Webconfig.
What I have done is to create a web.config in the reports folder but it hides all the export options. What am I doing wrong.
Andy
I've searched the help and found this broken link -
http://www.telerik.com/help/reporting/configuringtelerikreporting.html
I've found a thread that suggests adding a section to the Webconfig.
What I have done is to create a web.config in the reports folder but it hides all the export options. What am I doing wrong.
| <?xml version="1.0"?> |
| <configuration> |
| <configSections> |
| <section name="Telerik.Reporting" type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting.Processing, Version=3.1.9.701, 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="true"></Extension> |
| <Extension name="CSV" visible="false"></Extension> |
| <Extension name="PDF" visible="true"></Extension> |
| </Render> |
| </Extensions> |
| </Telerik.Reporting> |
| </configuration> |
Andy