12 Answers, 1 is accepted
Security features such as locked editing, password-protection and/or encryption are currently not supported in the PDF file generated by Telerik Reporting (in fact not supported in any of the available formats). Such advancements are logged in our system for future implementation.
Sorry for the temporary inconvenience.
Regards,
Steve
the Telerik team
Q3’11 of Telerik Reporting is available for download. Register for the What's New in Data Tools webinar to see what's new and get a chance to WIN A FREE LICENSE!
You say it is not possible for PDF. What about Excel reports?
Thanks and Regards
Joël
As noted in my previous post such features are in fact not supported in any of the available formats.
All the best,
Steve
the Telerik team
Q3’11 of Telerik Reporting is available for download. Register for the What's New in Data Tools webinar to see what's new and get a chance to WIN A FREE LICENSE!
Always on our need of locking Excel worksheets. we intend to use Telerik ASPNET viewer to display a preview of our reports. Do you think it will be possible to intercept output of Telerik Report to modify dynamically generated Excel reports using an HttpModule for example ?
Thanks for your answer
Regards
It is ok. I find a way to do this using the way proposed previously and an tier component.
Thanks
Is locking of pdf reports from being edited still not possible? I have a client who's discovered that pdfs they generate and send out are subsequently being tampered with, so I really need to be able to prevent this from being possible.
Thanks,
Mike
Thanks :)
There is no such feature in Telerik Reporting yet. Our aim is to produce a report document in the selected rendering format, with layout as close as possible to the one in the viewer and considered with the media. Further modifications over the rendered documents can be achieved through third party tools and libraries for document processing.
Regards,
Stef
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.
Thanks :)
The PDF security settings can be applied through the deviceInfo parameters passed to the reportProcessor.Renderreport method - Password Protection. In order to enable PDF password protection in code you have to set the device info as shown in the following code snippet:
System.Collections.Hashtable deviceInfo =
new
System.Collections.Hashtable();
deviceInfo[
"OwnerPassword"
] =
"test"
;
deviceInfo[
"UserPassword"
] =
"test1"
;
Regards,
Silviya
Progress Telerik
Password protecting this export format is currently not supported out of the box, however, we do have a feature request about this functionality and I have cast your vote for it in order to increase its priority - Introduce optional password protection for Office formats (telerik.com).
With that being said, there are a couple of workarounds that you may implement in order to achieve this, they are listed in my colleague Neli's answer to the link that I posted above