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
Html preview
Html preview
- Attachments
-
- HtmlPreview.png (107.55 KiB) Viewed 1241 times
-
- Toolbar.png (16.76 KiB) Viewed 1241 times
Re: Html preview
Hello.
You could disable any of it.
Thank you.
The HTML preview tab is in the WinForms Designer. But it never was in the WPF Designer.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)?
There are a lot of static options to hide menu items in the StiOptions.Designer.Panels.Dictionary class. For example,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?
Code: Select all
StiOptions.Designer.Panels.Dictionary.ShowColumnNewMenuItem = false;
Thank you.