Links in a report
-
- Posts: 42
- Joined: Thu May 05, 2011 7:12 pm
Links in a report
How can I create a link to a different page in a report?
Links in a report
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.
[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.
-
- Posts: 42
- Joined: Thu May 05, 2011 7:12 pm
Links in a report
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
Hello,
You can use the following code:
Thank you.
You can use the following code:
Code: Select all
StiOptions.Viewer.Windows.ShowBookmarksPanel = false;
-
- Posts: 42
- Joined: Thu May 05, 2011 7:12 pm
Links in a report
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
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.
[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.
-
- Posts: 42
- Joined: Thu May 05, 2011 7:12 pm
Links in a report
We are using both Viewers but I would like to set the option in the Report Designer. Is that possible?
Links in a report
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:
And in the WebViewer set the AllowBookmarks property to false.
Thank you.
[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;
Thank you.