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.
The old way doesn't work, so I'm hoping someone out there has done this and can set me straight on how to do this in WF8.This message has been edited. Last edited by: Dennis_V,
Local: AppStudio 8.2.03 - Win7 - Tomcat Server: WebFOCUS 8.2.03 - Windows 2008 R2 Enterprise on VMWare 2 CPU, 3.2GHz, 4GB of RAM Output Formats: HTML, Excel, PDF, PPT, Active Reports
Posts: 38 | Location: Denver, CO | Registered: March 16, 2005
The "issue" with WF8 is that if you haven't manually adjust the properties of your checkbox to name it as you wish, WF8 assign random name such as INPUT1 to the first element in the table tag. So it's possible that your control is named "MyCheckBox" but the first element under the div tag (input) is not named the same way. Then, when you are trying to do a "MyCheckBox0.checked = true" or anything to test the input field it doesn't work because the reference is not valid. This issue only occurs on the first input field (true for radio and checkbox). The others are named properly such as MyCheckBox1, MyCheckBox2, ...
To see what I mean look at the properties of your control. At the top of the properties section you can see your control's name in a "drop down" box. Click on the down arrow and you should see something such as
My problem was I did not understand where you actually name the checkbox control.
I was using the Unique Identifier at the container level and referencing that in my Javascript.
Now I know that you use the pull-down at the top of the Properties window to get at the actual control name within the container to change it to whatever you want to use in your JavaScript.
Much appreciated.
Local: AppStudio 8.2.03 - Win7 - Tomcat Server: WebFOCUS 8.2.03 - Windows 2008 R2 Enterprise on VMWare 2 CPU, 3.2GHz, 4GB of RAM Output Formats: HTML, Excel, PDF, PPT, Active Reports
Posts: 38 | Location: Denver, CO | Registered: March 16, 2005