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 am Having a HTML File. Two Input elements(Dropdown List Box) are there. Say Country and Car. They are Chained Togather. User selects both the values and clicks on the Submit button.
There is submit button clicking on which will fetch the report in the Same window. i.e, TARGET TYPE is Window and TARGET NAME is _self.
Once the Report is fetched, I will click on the Browser's back button . This will return to the Parameter page.
Is it possible to retain the values of Country and corresponding Car drop down list boxes with the Values selected before...
Browser's back button is the trick here. Is it possible to do this ? Any Ideas will be helpful.
Thanks in advance.This message has been edited. Last edited by: Kerry,
Thanks,
Ramkumar. WebFOCUS/Tableau Webfocus 8 / 7.7.02 Unix, Windows HTML/PDF/EXCEL/AHTML/XML/HTML5
Posts: 394 | Location: Chennai | Registered: December 02, 2009
that's not easy. The problem is mostly that the browsers back-button just goes back in the browsers history. So the page is taken from the browsers cache.
The choices made by the user are not part of the webpage. They're not stored in cache. Besides that, the user makes his choices, after the page is stored in cache.
It is possible to force the browser to not cache the page. But this just shows the message "page expired".
My tip is, don't open it in _SELF.
G'luck.
_____________________ WF: 8.0.0.9 > going 8.2.0.5
Posts: 668 | Location: Veghel, The Netherlands | Registered: February 16, 2010
There is a solution. But you have to use scripting. And then it's off topic for this forum I guess.
Add an onclick event on the submit button: Write selected values to cookies. Add an onload event to retrieve the cookies and set the dropdowns with scripting.
G'luck
_____________________ WF: 8.0.0.9 > going 8.2.0.5
Posts: 668 | Location: Veghel, The Netherlands | Registered: February 16, 2010