This is a migrated thread and some comments may be shown as answers.

exporting to word

8 Answers 902 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
linda
Top achievements
Rank 1
linda asked on 28 Oct 2013, 08:08 PM
Hi -
I read in the Telerik documentation that you may export to word but I do not have that option in the asp.net report viewer.
How do I get this option to show.
Thanks
Andy

8 Answers, 1 is accepted

Sort by
0
Stef
Telerik team
answered on 29 Oct 2013, 10:51 AM
Hello Andy,

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.

0
SOFIENE
Top achievements
Rank 1
answered on 29 Oct 2013, 03:45 PM
hi Stef ,
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 ,
0
linda
Top achievements
Rank 1
answered on 29 Oct 2013, 03:57 PM
Thanks for the info.  
Can you please let me know where there is documentation on how to implement this export to word.
Andy
0
linda
Top achievements
Rank 1
answered on 31 Oct 2013, 04:02 PM
Hi
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
 
0
Stef
Telerik team
answered on 01 Nov 2013, 10:46 AM
Hi,

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.

0
thelostleaf
Top achievements
Rank 2
answered on 05 Dec 2013, 05:45 PM
Hi,
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!
0
Stef
Telerik team
answered on 09 Dec 2013, 03:00 PM
Hello Eric,

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.

0
SOFIENE
Top achievements
Rank 1
answered on 09 Dec 2013, 03:35 PM
Hi ,
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>
Tags
General Discussions
Asked by
linda
Top achievements
Rank 1
Answers by
Stef
Telerik team
SOFIENE
Top achievements
Rank 1
linda
Top achievements
Rank 1
thelostleaf
Top achievements
Rank 2
Share this question
or