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 a page with two frames. The first frame is a filter which dynamically populates dropdowns depending on user selection. The second frame displays the report when the user selects Run from the first frame. The problem is there is a lot of flashing to a white background when the either of these are trying to load. The color of the html page and reports backgrounds are all set to blue but yet I still see white. Does anyone know if you can change this?
Not sure how this is going to post as I had to remove tags and things in the HTML. If you can put this together and run it you can see that on changing the dropdown it reloads the filter and the background briefly changes to white causing a flashing effect as the background color is set to blue.
Thanks
TABLE FILE CAR PRINT * ON TABLE HOLD AS COLST FORMAT ALPHA END
DEFINE FILE COLST COSELECT/A120= '<option value="'|CAR||'">'||CAR||'</option>'; END
TABLE FILE COLST PRINT COSELECT ON TABLE HOLD AS CODD FORMAT ALPHA END
-HTMLFORM BEGIN script language="JavaScript" type="text/javascript" function FilterChanged() { // Reload the page in the current frame document.forms[0].target = "_self";
document.forms[0].IBIMR_domain.value=''; document.forms[0].IBIMR_folder.value=''; document.forms[0].IBIMR_fex.value= 'app/car.fex'; Document.forms[0].IBIF_ex.value='app/car.fex'; document.forms[0].COSELECTED.value='TR7'; document.forms[0].submit(); } /script body bgcolor="rgb(199,224,231)" form action="/cgi-bin/ibi_cgi/ibiweb.exe" method="post" target="report"
You can't. It's actually the browser that's making the page background flash. At the point where the page background is white, the browser is reloading the page from your web server. As the page is loading there's no way to prevent it from going back to the default document window background color (which is white generally).
It's controlled by that annoying Microsoft Windows thing, you know?