Page 1 of 1

Customize StiWebViewerFx

Posted: Fri Aug 13, 2010 6:42 am
by jpascual
You can customize the theme of StiWebViewerFx control. Currently only three possibilities: 'blue, silver and black.
I wanted a theme with green color. I can catch a track from those already existing and change the background color? How? thanks

Customize StiWebViewerFx

Posted: Fri Aug 13, 2010 3:04 pm
by Jan
Hello,

Sorry, at this moment only three themes available.

Thank you.

Customize StiWebViewerFx

Posted: Sun Aug 15, 2010 8:54 am
by jpascual
ok thanks for your answer. So you can not edit the file 'blue' for example and add a background color green?

And I have a new question:
"I can remove the opcion "Open" to the menu options in StiWebViewerFX?



Customize StiWebViewerFx

Posted: Mon Aug 16, 2010 2:02 am
by Andrew
Hello,

Please, use the following code:
StiWebViewerFxOptions.Toolbar.ShowOpenButton = false;

Thank you.

Customize StiWebViewerFx

Posted: Mon Aug 16, 2010 2:22 am
by jpascual
Andrew thank you very much, I had no Report.WebFX library and saw that option. It works perfect.

I have a new question, I do not want to export in the formats: DIF and SILK. I have marked as False those options and still appear on the menu to export document. Do you know why?

Customize StiWebViewerFx

Posted: Mon Aug 16, 2010 4:50 am
by Alex K.
Hello,

You can use the ShowExportTo properties to disable some exports in Save menu:

Code: Select all

ShowExportToSylk="false" ShowExportToDif="false" />
Thank you.