Page 1 of 1

Bookmarks in Report

Posted: Wed Dec 07, 2011 12:35 pm
by kris@bplogix.com
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

Posted: Thu Dec 08, 2011 3:41 am
by Alex K.
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.

Bookmarks in Report

Posted: Thu Dec 08, 2011 2:17 pm
by kris@bplogix.com
Using v2011.2

Bookmarks in Report

Posted: Fri Dec 09, 2011 2:19 am
by Alex K.
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.

Bookmarks in Report

Posted: Fri Dec 09, 2011 3:08 pm
by kris@bplogix.com
How can I do this per report? From the report designer?

Bookmarks in Report

Posted: Mon Dec 12, 2011 7:59 am
by HighAley
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.