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.
Hello, all. Hopefully I have a simple Maintain question here.
Within my procedure, in my on-click event, I have some javascript code. I know if I need to run a Maintain Case from the js, I can do so by using the IWCTrigger() method. But am I able to do the opposite? I'd like to execute a javascript function code from within my Maintain Case?
Kelly WF 7.6.6, Win 2K3 SP2, Tomcat
Posts: 19 | Location: SLC, UT | Registered: January 19, 2007
I usually do this by attaching the javascript to a form's onload event that a case shows. Also, I can attach it to the onload event of the form that invokes the case - usually by having a hidden text object that I set in the case to a certain value. The onload event investigates the value of the object to determine whether to invoke the javascript. Hope this makes sense.
I agree with Anatess, you can not run Js code inside Maintain. you must run it in the browser.
A technique I have used is to attach a js library to the form (Not linked but embedded) with say only 1 comment in it. Then you can add lines to the library before it is added to the form.
Thank you both. I was able to take your suggestions and get it working. Turns out setting a value to a hidden text object worked great for what I was trying to accomplish.
Kelly
Kelly WF 7.6.6, Win 2K3 SP2, Tomcat
Posts: 19 | Location: SLC, UT | Registered: January 19, 2007