Hi all,
I am having problem with passing more than one parameters in JavaScript function. It is only passing the first parameter(GARN_CIF), and ignore the rest.
I am running in APEX 4.0.2. Your help is greatly appreciated.
Post Element Text calling the function:
<a href="#" onclick="javascript:callCalGarnFeePopup();">CF</a>
function callCalGarnFeePopup()
{
var url;
url = 'f?p=&APP_ID.:85:&APP_SESSION.::YES:85:P85_GARN_CIF,P85_DOCKET,P85_PAYMENT_TYPE,P85_CHECK_AMT:'+$v('P47_GARN_CIF1'),+$v('P47_DOCKET1'),+$v('P47_PMT_TYPE1'),+$v('P47_CHECK_AMT');
w = open(url,"winLov","Scrollbars=10,resizable=10,width=600,height=300");
if (w.opener == null)
{
w.opener = self;
}
w.focus();
}
Thanks,
MT