Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Passing more than one parameters in Javascript function

MtranMar 9 2016 — edited Mar 10 2016

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

This post has been answered by fac586 on Mar 9 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 7 2016
Added on Mar 9 2016
4 comments
644 views