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.
Hi, I would like to place a form, containing my parameters, onto an html page using App Studio, and I want the form to be centered on the page, so that when you resize the browser, the form stays in the center. I know I'm missing the obvious simple answer, but I've been fighting it all afternoon. Any ideas would be most appreciated.This message has been edited. Last edited by: Mike in DeLand,
Set the properties for anything inside the form (e.g., buttons) like this:
Position: relative
Your form might disappear from view while you do this. If that happens, scroll to the right in your design tool until you find it.
I cannot seem to center it vertically, however. In standard HTML, the above settings should do the trick. But not in WebFOCUS.This message has been edited. Last edited by: Squatch,
App Studio WebFOCUS 8.1.05M Windows, All Outputs
Posts: 594 | Location: Michigan | Registered: September 04, 2015
//width of groupbox1 is 600 var scrWidth=screen.width; var grpbxWidth = document.getElementById('groupbox1').offsetWidth; var setWidth = ((scrWidth - grpbxWidth)/2); window.moveTo(0,0); window.resizeTo(screen.width,screen.height); document.getElementById('groupbox1').style.left = setWidth;
Maybe jQuery can do this easier but not sure of the commands.
Just change the margin to 0px auto on the outermost item (in my case it was a panel) and blank out the position, top, left attributes. The inner items can be left unchanged. Thanks to all!