As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I have an existing BI Portal Dashboard, with an parameter page and a requirement to add date range control. The problem is, parameter page (panel/iframe) does not have enough room to allow the date picker to display and changing the dashboard design is not desirable.
I'm wondering if I could add a separate (date range) panel (initially hidden) with the Calendar Control and a date range button to the existing parameter page.
The idea is that when the user selects a "date range" button, the date range panel displays. The user makes their date selections, then selects an OK button on the date range panel which hides the date range panel and refreshes the dashboard, charts and reports with the new date range.
But, working with the parameter pages embedded JavaScript button1_onclick event, I can not find a way to access the date range panels id to toggle the visibility.
Has anyone accomplished anything like this in the BI Portal?This message has been edited. Last edited by: Don Garland,
Can you add it as a pop up? So when you click on the "date range" button, a panel pops up with your date range selections?
If you are using jquery, look at Dialog . It will do what you need. Otherwise, you can build a div at the end of the page with a display of none. Clicking on the button would change the value of the display to 'inline-block' or what ever you wanted it to be. Using absolute positioning you can have it sit on top of your filters, and then put a "done" or "ok" button in the div to hide the parameters again.
Eric Woerle 8.1.05M Gen 913- Reporting Server Unix 8.1.05 Client Unix Oracle 11.2.0.2
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013
I have a HTML document, parameter page inserted into a portal page panel. [IMG:left] [/IMG]
When the user selects the calendar control, the date picker is hidden and can not get out of the panel (iframe). [IMG:left] [/IMG]
I'd like to figure out how to have the date control pop up in it's own iframe as described in the original post.This message has been edited. Last edited by: Don Garland,
Opened a case with tech support and they confirmed.... "Unfortunately I don't think you can programmatically change panel attributes, although this is a new feature in Product Management.
You can do something similar with an HTML page, though, as you can hide/display any element on the page dynamically....."