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