Hi,
I have some issue with my telerik silverlight report viewer control:
1) How can I remove some export items in telerik silverlight report viewer toolbar.
(I need to show only PDF, Image, Excel entry don't want other like CSV, RTF, Web Archive etc)
Note : The items are carry report to report like in my report ABC it will show only export items are PDF, Image, Excel. And in report XYZ show only CSV, Excel.
2) How to hide some toolbar items in report viewer.
I want to hide/remove first two items which is never enabled (previous/next button) and "Click to close parameters area" button.
I tried the <configSections> entry in my TestProject.web's web.config file, but no luck.
<configSections>
<section name="Telerik.Reporting" type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" allowLocation="true" allowDefinition="Everywhere"/>
</configSections>
<Telerik.Reporting>
<Extensions>
<Render>
<Extension name="IMAGE" visible="true"/>
<Extension name="PDF" visible="false"/>
<Extension name="RTF" visible="true"/>
<Extension name="XPS" visible="true"/>
<Extension name="XLS" visible="true"/>
</Render>
</Extensions>
</Telerik.Reporting>
Thanks
Chandan
I have some issue with my telerik silverlight report viewer control:
1) How can I remove some export items in telerik silverlight report viewer toolbar.
(I need to show only PDF, Image, Excel entry don't want other like CSV, RTF, Web Archive etc)
Note : The items are carry report to report like in my report ABC it will show only export items are PDF, Image, Excel. And in report XYZ show only CSV, Excel.
2) How to hide some toolbar items in report viewer.
I want to hide/remove first two items which is never enabled (previous/next button) and "Click to close parameters area" button.
I tried the <configSections> entry in my TestProject.web's web.config file, but no luck.
<configSections>
<section name="Telerik.Reporting" type="Telerik.Reporting.Processing.Config.ReportingConfigurationSection, Telerik.Reporting, Version=7.1.13.802, Culture=neutral, PublicKeyToken=a9d7983dfcc261be" allowLocation="true" allowDefinition="Everywhere"/>
</configSections>
<Telerik.Reporting>
<Extensions>
<Render>
<Extension name="IMAGE" visible="true"/>
<Extension name="PDF" visible="false"/>
<Extension name="RTF" visible="true"/>
<Extension name="XPS" visible="true"/>
<Extension name="XLS" visible="true"/>
</Render>
</Extensions>
</Telerik.Reporting>
Thanks
Chandan