Bookmarks in Report
-
- Posts: 42
- Joined: Thu May 05, 2011 7:12 pm
Bookmarks in Report
By default if a bookmark is added to the report the Bookmark Panel is displayed. Can I change this behavior to not display the bookmark panel if a bookmark is added to the report? If so can I change per report?
Bookmarks in Report
Hello,
Please clarify which version of Stimulsoft Reports do you use? In last version, if you disable bookmarks panel then, next time, this panel is disabled.
Thank you.
Please clarify which version of Stimulsoft Reports do you use? In last version, if you disable bookmarks panel then, next time, this panel is disabled.
Thank you.
-
- Posts: 42
- Joined: Thu May 05, 2011 7:12 pm
Bookmarks in Report
Using v2011.2
Bookmarks in Report
Hello,
You can use the following code for WebViewer:
property AllowBookmarks="False"
for WebViewerFx
StiWebViewerFxOptions.Toolbar.ShowBookmarksButton = false;
Also
StiWebViewerFxOptions.Panels.BookmarksPanelMode = StiWebViewerFxOptions.StiViewerPanelMode.AlwaysHidden;
StiWebViewerFxOptions.Panels.BookmarksPanelMode = StiWebViewerFxOptions.StiViewerPanelMode.AlwaysVisible;
StiWebViewerFxOptions.Panels.BookmarksPanelMode = StiWebViewerFxOptions.StiViewerPanelMode.Auto;
Thank you.
You can use the following code for WebViewer:
property AllowBookmarks="False"
for WebViewerFx
StiWebViewerFxOptions.Toolbar.ShowBookmarksButton = false;
Also
StiWebViewerFxOptions.Panels.BookmarksPanelMode = StiWebViewerFxOptions.StiViewerPanelMode.AlwaysHidden;
StiWebViewerFxOptions.Panels.BookmarksPanelMode = StiWebViewerFxOptions.StiViewerPanelMode.AlwaysVisible;
StiWebViewerFxOptions.Panels.BookmarksPanelMode = StiWebViewerFxOptions.StiViewerPanelMode.Auto;
Thank you.
-
- Posts: 42
- Joined: Thu May 05, 2011 7:12 pm
Bookmarks in Report
How can I do this per report? From the report designer?
Bookmarks in Report
Hello.
[quote="kris"@bplogix.com]How can I do this per report? From the report designer?[/quote]
It's the property of the Viewer and you can't set it in the Designer.
Thank you.
[quote="kris"@bplogix.com]How can I do this per report? From the report designer?[/quote]
It's the property of the Viewer and you can't set it in the Designer.
Thank you.