Forum Discussion
Anonymous
7 years agoNot applicable
Link to another report tab
Hi, Is there a way to create a link on a report to another tab within the same report? I know that we can use a text box and put a link. But we need to hard-code the URL. And since the URL can ch...
- Anonymous7 years ago
Hi,
Have you try bookmark? Let say you have 2 pages
- Create book mark in page 2 (named: go to p2)
- Creat a button and assign the action to this book mark.
I hope this help!
Duc
socc726
7 years agoRegular Visitor
If you are using the javascript api you can acheive this by adding the following setting:
navContentPaneEnabled: true
config object looks like this:
var config= {
type: 'report',
tokenType: 1,
accessToken: token,
embedUrl: url,
id: reportId,
permissions: 7,
settings: {
filterPaneEnabled: filtersEnabled,
navContentPaneEnabled: true,
background: 1
}
};