Hello,
I need to disable some of export buttons in report viewer control. (I need only pdf and word export options - all other should be hidden)
Is there any way to do this?
Best regards,
VojinDM
Disabling report viewer menu items
Disabling report viewer menu items
Hello,
You can use the following code:
Thank you.
You can use the following code:
Code: Select all
StiOptions.Viewer.SaveReportsButtons.ShowPdfButton = false;
StiOptions.Viewer.SaveReportsButtons.ShowDocumentButton = false;
...
Disabling report viewer menu items
Thanks Aleksey, you saved me some time - again. 

Disabling report viewer menu items
Have a nice day!