8 Answers, 1 is accepted
DOCX/PPTX/XLSX rendering extensions require Telerik.Reporting.OpenXmlRendering.dll and Open XML SDK 2.0 for Microsoft Office (DocumentFormat.OpenXml.dll v.2.0.5022.0 or above). If you prefer not to install the OpenXML SDK you can use the DocumentFormat.OpenXml.dll provided with the local demos under C:\Program Files (x86)\Telerik\Reporting <VERSION>\Examples\bin (the default installation folder).
Let us know if you have any further questions.
Regards,
Stef
Telerik
Have you tried the new visualization options in Telerik Reporting Q2 2013? You can get them from your account.
we have just to reference Telerik.Reporting.OpenXmlRendering.dll and DocumentFormat.OpenXml.dll in our project ??
in my case this doesn't worok .
best regards ,
Can you please let me know where there is documentation on how to implement this export to word.
Andy
Any answer to Sofiene's or my last post.
You made it sound like all we had to do was include a few dll and all would work. This is not the case.
Also I still cannot find any documentation on this
Andy
To enable the export to the Open XML formats you need only the assemblies listed in my previous post without any additional settings. If the export options are not displayed in the export drop down, double-check if you have not limited the export options in application config file.
You can compare your project settings to the local WebFormsDemo provided with your Telerik Reporting installation, where we have shown all export options in the ReportViewer control.
If you need further help, please open a support ticket with an example illustrating your issue with adding the references and displaying the export options in the viewer.
@Andy: Please elaborate what export functionality you require. You can export programmatically the report using the DOCX rendering extension.
Regards,
Stef
Telerik
Have you tried the new visualization options in Telerik Reporting Q2 2013? You can get them from your account.
Having same exact issue, can see Word reporting export locally in VS Dev, but not at when published at Azure.
Can see PowerPoint, and XPS and Excel at export options at Azure. Can see word export in grids.
Web.config has
<Telerik.Reporting>
<Extensions>
<Render>
<Extension name="PDF" visible="true"></Extension>
<Extension name="XLS" visible="true"></Extension>
<Extension name="CSV" visible="true"></Extension>
<Extension name="RTF" visible="true"></Extension>
<Extension name="XPS" visible="true"></Extension>
<Extension name="DOCX" visible="true"></Extension>
<Extension name="XLSX" visible="true"></Extension>
<Extension name="PPTX" visible="true"></Extension>
<Extension name="MHTML" visible="true"></Extension>
<Extension name="IMAGE" visible="true"></Extension>
<Extension name="HTML5" visible="true"></Extension>
<Extension name="HTML5Interactive" visible="true"></Extension>
</Render>
</Extensions>
</Telerik.Reporting>
can see all but Word.
7.2.13.1016 - all reporting dlls are same version and included, and marked copy local
VS2013,
DocumentFormat.OpenXml 2.5.5631.0 (copy local)
Thanks for any help!
Please take a look at the post in the other forum thread where you asked the same question: Report Export to DOCX.
In future, please avoid posting the same question multiple times. If it is an emergency, use our support ticketing system, where you are guaranteed to receive an answer from Telerik representative in a timely manner.
Regards,
Stef
Telerik
New HTML5/JS REPORT VIEWER with MOBILE AND TOUCH SUPPORT available in Telerik Reporting Q3 2013! Get the new Reporting version from your account or download a trial.
That work prefectly .
I had just to add Extension section in my web.config with Telerik.Reporting name and to define Extension renders like this :
fo information also the label to show in report can be defined . thank you .
<
Telerik.Reporting
>
<
Extensions
>
<
Render
>
<
Extension
name
=
"PDF"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"XLS"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"CSV"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"RTF"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"XPS"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"DOCX"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"XLSX"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"PPTX"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"MHTML"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"IMAGE"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"HTML5"
visible
=
"true"
></
Extension
>
<
Extension
name
=
"HTML5Interactive"
visible
=
"true"
></
Extension
>
</
Render
>
</
Extensions
>
</
Telerik.Reporting
>