Show Export Buttons

Stimulsoft Reports.Flex discussion
Locked
careli
Posts: 10
Joined: Tue Mar 29, 2011 9:18 am
Location: Brasil

Show Export Buttons

Post by careli »

Hello,

I'm trying to show the export buttons (PDF, EXCEL, JPEG, etc) on the viewer. But only the save button was displayed. How should I proceed so that the buttons are displayed??

this is the code I'm using.
StiViewerFx.initialize();
StiOptions.viewer.toolbar.showEditButton = true;
StiOptions.viewer.exports.showExportToDocument = true;
StiOptions.viewer.exports.showExportToExcel = true;
StiOptions.viewer.exports.showExportToJpeg = true;
StiOptions.viewer.exports.showExportToOpenDocumentWriter = true;
StiOptions.viewer.exports.showExportToPdf = true;
StiOptions.viewer.exports.showExportToPpt = true;
var report:StiReport = new StiReport();
report.loadPackedReportFromString(reportXML);
report.showDialog(null,reportName,true,true);
Thanks for the help

Vladimir
Posts: 1462
Joined: Fri Apr 13, 2007 4:05 am
Location: Earth

Show Export Buttons

Post by Vladimir »

Hello,

Currently available only exports to PDF, Excel, Text and RichText. If you are using a release version 2010.3, you will need to download the latest version available on our website: http://stimulsoft.com/ReportsFxFlexDownloads.aspx
But only the save button was displayed.
All items of exports will be in the dropdown menu when you click on Save button.

Thank you.
Locked