Page 1 of 1

Html preview

Posted: Thu Apr 11, 2013 8:45 am
by robocik
In our previous application we used old version of stimulsoft (don't know exact version) but there was a html preview in report designer (see attachemet HtmlPreview.png). Can we have the same feature in the current version (WPF)?

Second thing my customer want to hide toolbar in Dictionary tab (see Toolbar.png) (because he think that user would do to much in the application). Can we hide this toolbar?

Thanks

Re: Html preview

Posted: Thu Apr 11, 2013 11:18 am
by HighAley
Hello.
robocik wrote:In our previous application we used old version of stimulsoft (don't know exact version) but there was a html preview in report designer (see attachemet HtmlPreview.png). Can we have the same feature in the current version (WPF)?
The HTML preview tab is in the WinForms Designer. But it never was in the WPF Designer.
robocik wrote:Second thing my customer want to hide toolbar in Dictionary tab (see Toolbar.png) (because he think that user would do to much in the application). Can we hide this toolbar?
There are a lot of static options to hide menu items in the StiOptions.Designer.Panels.Dictionary class. For example,

Code: Select all

StiOptions.Designer.Panels.Dictionary.ShowColumnNewMenuItem = false;
You could disable any of it.

Thank you.