I ran into a situation that I was wondering if it would be possible for Stimulsoft to add a new toolbar that has only button for each export item(PDF, Excel, HTML, etc.) to the Viewer control. Currently, the export items are available in the main toolbar of the Viewer control, by clicking the dropdown of the Export button.
It would be very nice if we were able to show another toolbar that only had the export buttons. Thanks
Viewer toolbar - suggestion
Viewer toolbar - suggestion
You can do this toolbar manually. StiWebViewer have special methods for each type of export:
You need only call specified method. For also you need hide standard toolbar. You can do this with property ShowToolBar.
Thank you.
Code: Select all
ProcessPdfRequest();
ProcessXpsRequest();
ProcessHtmlRequest();
ProcessMhtRequest();
ProcessDbfRequest();
ProcessRtfRequest();
ProcessXlsRequest();
ProcessXlsXmlRequest();
ProcessExcel2007Request();
ProcessTextRequest();
ProcessCsvRequest();
Thank you.