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 trying to fire off the submit button onclick via an image. I plan on adding additional code to change values when the image is clicked. But at a minimum I am trying execute my report as if I clicked on the submit button. Do I need to replace crtl with a value? Here is my javascript.
//Begin function form1Submit_onclick function form1Submit_onclick(ctrl) {
} //End function form1Submit_onclick
//Begin function image1_onclick function image2_onclick(ctrl) {
form1Submit_onclick(ctrl);
}This message has been edited. Last edited by: Jay Potter,
WebFocus 8.1.5 iSeries/Windows DB2/SQL/Access Dev Studio App Studio Maintain ReportCaster
Posts: 341 | Location: Pembroke NH/Jericho NY | Registered: June 15, 2011
I figured this out. I added the same hyperlink to the image as the submit button, but I change the values I need to change before firing off the onclick of the image.
WebFocus 8.1.5 iSeries/Windows DB2/SQL/Access Dev Studio App Studio Maintain ReportCaster
Posts: 341 | Location: Pembroke NH/Jericho NY | Registered: June 15, 2011
If you still have both the submit button and the image in the page you could call the submit function passing the submit button control instead of the image control. In V.8 the code would look something like this:
//Begin function form1Submit_onclick
function form1Submit_onclick(ctrl) {
}
//End function form1Submit_onclick
//Begin function image1_onclick
function image2_onclick(ctrl) {
form1Submit_onclick(IbComposer_getComponentById('your_submit_button_id'));
}
This way you wouldn't have to have to have the submit link in both the button and the image.
WebFOCUS 7.7.03/8.0.08 Dev Studio 7.7.03/8.0.08 App Studio 8.0.08 Windows 7 ALL Outputs
Posts: 402 | Location: Upland, IN | Registered: June 08, 2012