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!

ApEx (HTML-DB) with AJAX

SenySep 8 2015 — edited Sep 14 2015

Hi All,

I have used below function to call a html chart type page in Apex 4.2 application. when I run chart page itself it loads the chart.

but when I call it using below function even though it loads, chart does not load. This only happens with chart type pages and other pages runs fine.

Really appreciate if you can tell me that is there error in below function or is 'htmldb_Get' not compatible with Apex 4.2.

function getPortlet(port_id)

{

var get = new htmldb_Get(null,$x('pFlowId').value,null,port_id);

var tag = '<div id="';

tag = tag + port_id;

tag = tag + '">';

gReturn = get.get(null,tag,'</div id="">');

document.write(gReturn);

}

Thank you and Best Regards

Seny

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 12 2015
Added on Sep 8 2015
2 comments
452 views