Page 1 of 1

Links in a report

Posted: Thu Oct 27, 2011 4:06 pm
by kris@bplogix.com
How can I create a link to a different page in a report?

Links in a report

Posted: Fri Oct 28, 2011 8:17 am
by HighAley
Hello.
[quote="kris"@bplogix.com]How can I create a link to a different page in a report?[/quote]
Please, detail your problem.
Try to see our demo report Anchor or List of Products in the Interactive Reports.

Thank you.

Links in a report

Posted: Wed Nov 16, 2011 1:41 pm
by kris@bplogix.com
The bookmark option is what I was looking for. Thank you. Now i would like to know how to hide the Bookmark Panel?

Links in a report

Posted: Thu Nov 17, 2011 7:20 am
by Alex K.
Hello,

You can use the following code:

Code: Select all

StiOptions.Viewer.Windows.ShowBookmarksPanel = false;
Thank you.

Links in a report

Posted: Thu Nov 17, 2011 11:45 am
by kris@bplogix.com
I'm sorry but where do I place the code? I tried Page render and print events but it does not work.

Links in a report

Posted: Fri Nov 18, 2011 7:15 am
by HighAley
Hello.
[quote="kris"@bplogix.com]I'm sorry but where do I place the code? I tried Page render and print events but it does not work.[/quote]
What viewer do you use? WebViewer or WebViewerFx?

Thank you.

Links in a report

Posted: Fri Nov 18, 2011 4:46 pm
by kris@bplogix.com
We are using both Viewers but I would like to set the option in the Report Designer. Is that possible?

Links in a report

Posted: Mon Nov 21, 2011 5:25 am
by HighAley
Hello.
[quote="kris"@bplogix.com]We are using both Viewers but I would like to set the option in the Report Designer. Is that possible?[/quote]
It is impossible, because it's a Viewer option.
In the WebViewerFx please use this code:

Code: Select all

StiWebViewerFxOptions.Toolbar.ShowBookmarksButton = false;
And in the WebViewer set the AllowBookmarks property to false.

Thank you.