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 have two radio buttons (a & b) that when clicked call a procedure to check for the users security rights. I am having issues passing the variables for the radio buttons from one page to another html page. Any help would be great.
WF 7.6.10 /IIS 6/ JBoss Enterprise 4.3 Windows XP SP 2/Windows 2003 Server MVS 7.3.3
var idx = document.URL.indexOf('?'); /* parameters on this URL? */
var params = new Array(); /* define an array */
if (idx != -1) /* if any params detected */
{
/* split all the parameters as deliniated by an "&" */
var pairs = document.URL.substring(idx+1, document.URL.length).split('&');
/* go through all parameters detected */
for (var i=0; i<pairs.length; i++)
{
/* grab the variable and the value */
nameVal = pairs[i].split('=');
eval("V_"+" = new ParmResult(nameVal[0], nameVal[1]);");
params[eval(params.length)] = eval("V_");
}
}
function Request(parmname)
{
if (params.length > 0)
{
for (i=0; i < params.length; i++)
{
if(params[i].name == parmname)
{
return params[i].val
}
}
}
return null
}
function ParmResult(name, val)
{
this.name = name;
this.val = val;
}
to use it you must have an form method of get or create the url with the parameters on the url (that is what GET does).
In your javascript call the Request function passing the Name of the URL Parameter that you want to find the value of example: To get the val of the parameter called UserID in the Below url