
How can I modify ReportViewer 1q 2009 export option to allow users export to pdf and .csv only. I need to remove all other export options.
Thank you.
Galina.
12 Answers, 1 is accepted
I've already answered your inquiry in the forum thread you've posted. We kindly ask you to restrain from opening multiple threads on the same subject as we're trying to answer all threads and this only slows us down.
Thank you for the understanding.
Best wishes,
Steve
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.

I also need answer for this question.
Can you give the link of this thread where I can get answer?
Note: For this kind of answers provide links
Thanks,
Sabarish
This question has been answered in other forum threads, present in our documentation and prepared in the form of KB article:Limit export options in ReportViewer to certain format only.
Best wishes,
Steve
the Telerik team

How can I disable Excel option just for one report in my application ? (not for all)
(Telerik Reporting Q2 2011)
BR
Christophe
Currently the functionality for disabling some of the supported export formats work on application level i.e. for all report viewers in the application. However the scenario of disabling certain format for certain viewer or per report makes sense and is logged in our database for investigation and future implementation.
Sorry for the temporary inconvenience.
All the best,
Steve
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

hope your this feature for disabling certain format for certain viewer or per report is ready to use; because i am in great need for this functionality;
regards
ghazanfar
Currently you can do this only on application level i.e. it is applied for all report viewers in the application.
Regards,
Steve
the Telerik team
BLOGGERS WANTED! Write a review about Telerik Reporting or the new Report Designer, post it on your blog and get a complimentary license for Telerik Reporting. We’ll even promote your blog and help bring you a few fresh readers. Yes, it’s that simple. And it’s free. Get started today >

I was able to get this to work with a bit of jquery:
$(
"#ClientIDOfTheExportDropdown option[value=XLS]").remove();

In my case I tried inspecting the HTML5 Report Viewer Export Dropdown but I dont see any dropdown ID rendered in markup (see below).
Could you pls assist me where excatly I should make this quick fix ?
Thanks
-Nitin
You can use attribute selectors to apply styling to export options in the drop-down menu. Excel export options can be hidden for example with the following selector:
.k-menu .k-item a[data-command-parameter=
"XLS"
],
.k-menu .k-item a[data-command-parameter=
"XLSX"
]
{
display
:
none
;
}
I hope this will help.
Regards,
Katia
Telerik

Thanks Katia,
Its working as per expected,
Thanks
-Nitin

Hi Katia,
Its working as per expected,
Thanks
-Nitin