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. Moving forward, myibi is our community platform to learn, share, and collaborate. We have the same Focal Point forum categories in myibi, so you can continue to have all new conversations there. If you need access to myibi, contact us at myibi@ibi.com and provide your corporate email address, company, and name.
I am trying to send an array of values to a multi select drop down. I've tried using the javascript in the WebFOCUS documentation
The code below works in an html page perfectly. However, when I add the html page to a portal page, it no longer works. Not sure if anyone knows of a work around for this.
function button2_onclick(event) {
var arr = [];
arr.push('ITALY');
arr.push('JAPAN');
IbComposer_setCurrentSelection('listbox1',arr,'false');
}
WebFOCUS 8202, Windows 10This message has been edited. Last edited by: Berny,
I set up a new page in a new portal and everything worked perfectly. Not sure what I was doing previously that was causing the Javascript to break, but everything is working fine now. Thanks!